Skip to content

Commit 2faded2

Browse files
authored
Fixed Frontend Dependency Issues (#31)
## Notion ticket link <!-- Please replace with your ticket's URL --> [Ticket Name](https://www.notion.so/uwblueprintexecs/Task-Board-db95cd7b93f245f78ee85e3a8a6a316d) <!-- Give a quick summary of the implementation details, provide design justifications if necessary --> ## Implementation description * <!-- What should the reviewer do to verify your changes? Describe expected results and include screenshots when appropriate --> ## Steps to test 1. <!-- Draw attention to the substantial parts of your PR or anything you'd like a second opinion on --> ## What should reviewers focus on? * ## Checklist - [ ] My PR name is descriptive and in imperative tense - [ ] My commit messages are descriptive and in imperative tense. My commits are atomic and trivial commits are squashed or fixup'd into non-trivial commits - [ ] I have run the appropriate linter(s) - [ ] I have requested a review from the PL, as well as other devs who have background knowledge on this PR or who will be building on top of this PR
1 parent 088dd6c commit 2faded2

File tree

5 files changed

+77
-24
lines changed

5 files changed

+77
-24
lines changed

frontend/package-lock.json

Lines changed: 70 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"@chakra-ui/react": "^3.13.0",
1213
"next": "^14.2.24",
14+
"next-themes": "^0.4.6",
1315
"react": "^18",
14-
"react-dom": "^18"
16+
"react-dom": "^18",
17+
"react-icons": "^5.5.0"
1518
},
1619
"devDependencies": {
1720
"@types/node": "^20",

frontend/src/pages/_app.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ import { Provider } from '@/components/ui/provider';
44

55
export default function App({ Component, pageProps }: AppProps) {
66
return (
7-
<html suppressHydrationWarning>
8-
<Provider>
9-
<Component {...pageProps} />
10-
</Provider>
11-
</html>
7+
<Provider>
8+
<Component {...pageProps} />
9+
</Provider>
1210
);
1311
}

0 commit comments

Comments
 (0)