diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 8e63052e..e9534ed4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,7 +1,7 @@ --- name: Bug report about: Create a report to help us improve -title: "[BUG]" +title: "" labels: bug assignees: "" --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index a8d14802..d883b8f2 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,7 +1,7 @@ --- name: Feature request about: Suggest an idea for this project -title: "[FEAT]" +title: "" labels: enhancement assignees: "" --- diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7fa0d45f..d39cc723 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,7 +43,7 @@ Our preferred way of providing the opportunity for people to contribute to Noodl - You see an area of improvement in the code base, this could be a fix, feature, refactoring...etc -- Create an [issue](https://github.com/ixahmedxi/noodle/issues) on our Github repository. +- Create an [issue](https://github.com/noodle-run/noodle/issues) on our Github repository. - Wait until a team member discusses the issue with you, and if both parties are in agreement, you can assign yourself to the issue. @@ -106,7 +106,7 @@ There are a lot of other technologies being used in this project, however these ### Cloning the repo -To clone the repo, you firstly need to [fork](https://github.com/ixahmedxi/noodle/fork) it, and then clone your copy of noodle locally. +To clone the repo, you firstly need to [fork](https://github.com/noodle-run/noodle/fork) it, and then clone your copy of noodle locally. ```bash git clone https://github.com//noodle.git diff --git a/README.md b/README.md index 1f286829..1f893a62 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
- Noodle logo + Noodle logo

Noodle
Rethinking Student Productivity


@@ -14,7 +14,7 @@ > > Follow me on twitter [@ixahmedxii](https://twitter.com/ixahmedxii) for updates. -![Noodle Preview](https://github.com/ixahmedxi/noodle/blob/main/public/preview.png?raw=true) +![Noodle Preview](https://github.com/noodle-run/noodle/blob/main/public/preview.png?raw=true)

⚠️ This is a UI design mockup of what the platform will look like, it is not the current state of the project.

@@ -40,5 +40,5 @@ As an open-source platform, Noodle strives to cultivate a community of students ## Star History -[![Star History Chart](https://api.star-history.com/svg?repos=ixahmedxi/noodle#gh-light-mode-only)](https://star-history.com/#ixahmedxi/noodle#gh-light-mode-only) -[![Star History Chart](https://api.star-history.com/svg?repos=ixahmedxi/noodle&theme=dark#gh-dark-mode-only)](https://star-history.com/#ixahmedxi/noodle#gh-dark-mode-only) +[![Star History Chart](https://api.star-history.com/svg?repos=noodle-run/noodle#gh-light-mode-only)](https://star-history.com/#noodle-run/noodle#gh-light-mode-only) +[![Star History Chart](https://api.star-history.com/svg?repos=noodle-run/noodle&theme=dark#gh-dark-mode-only)](https://star-history.com/#noodle-run/noodle#gh-dark-mode-only) diff --git a/src/app/(dashboard)/_components/side-menu-modules.tsx b/src/app/(dashboard)/_components/side-menu-modules.tsx index 59170f9c..32e48fff 100644 --- a/src/app/(dashboard)/_components/side-menu-modules.tsx +++ b/src/app/(dashboard)/_components/side-menu-modules.tsx @@ -194,7 +194,7 @@ const CreateModulePopover = () => { const utils = trpc.useUtils(); - const { mutateAsync } = trpc.module.post.create.useMutation({ + const { mutateAsync, isLoading } = trpc.module.post.create.useMutation({ onSuccess: async () => { await utils.module.get.all.invalidate(); }, @@ -362,7 +362,12 @@ const CreateModulePopover = () => { Color - diff --git a/src/app/(dashboard)/_components/side-menu.tsx b/src/app/(dashboard)/_components/side-menu.tsx index 04227788..5a436dbb 100644 --- a/src/app/(dashboard)/_components/side-menu.tsx +++ b/src/app/(dashboard)/_components/side-menu.tsx @@ -33,7 +33,7 @@ export const DashboardSideMenu = async () => {