Skip to content

Commit

Permalink
Merge branch 'main' into module-creation-loading
Browse files Browse the repository at this point in the history
  • Loading branch information
ixahmedxi authored Oct 31, 2023
2 parents e33d08b + 90ffc5d commit 97ff543
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG]"
title: ""
labels: bug
assignees: ""
---
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[FEAT]"
title: ""
labels: enhancement
assignees: ""
---
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ on:
push:
branches:
- main
pull_request:
pull_request_target:
branches:
- main
paths-ignore:
- ".vscode/**"
- "*.md"

env:
# Database
Expand All @@ -28,6 +33,7 @@ jobs:
main:
name: CI
runs-on: ubuntu-latest
environment: CI
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion src/app/(dashboard)/_components/side-menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const DashboardSideMenu = async () => {
<ul>
<li>
<FeedbackModal
email={user?.emailAddresses[0]!.emailAddress ?? ""}
email={user?.emailAddresses[0]?.emailAddress ?? ""}
/>
</li>
<li>
Expand Down

0 comments on commit 97ff543

Please sign in to comment.