Skip to content

Commit 91b3d50

Browse files
committed
fix: upgrade to latest
1 parent 8f27523 commit 91b3d50

File tree

5 files changed

+1012
-750
lines changed

5 files changed

+1012
-750
lines changed

components/UpsertProfileModal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const UpsertProfileModal: FC<UpsertProfileModalProps> = ({
2727
const { data } = await supabase
2828
.from("profile")
2929
.upsert({ ...input, id: profile?.id })
30-
.select("*")
30+
.select("id,username,role")
3131
.throwOnError()
3232
.single();
3333

database.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,3 @@ export interface Database {
3030
Functions: {};
3131
};
3232
}
33-

package.json

+16-21
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,27 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@fortawesome/fontawesome-svg-core": "^6.2.0",
13-
"@fortawesome/free-regular-svg-icons": "^6.2.0",
14-
"@fortawesome/free-solid-svg-icons": "^6.2.0",
15-
"@fortawesome/react-fontawesome": "^0.2.0",
16-
"@headlessui/react": "^1.6.6",
17-
"@supabase/supabase-js": "2.0.0-rc.8",
18-
"@tailwindcss/forms": "^0.5.2",
19-
"@tailwindcss/line-clamp": "^0.4.0",
20-
"@tailwindcss/typography": "^0.5.4",
12+
"@headlessui/react": "^1.7.14",
13+
"@supabase/supabase-js": "2.21.0",
14+
"@tailwindcss/forms": "^0.5.3",
15+
"@tailwindcss/typography": "^0.5.9",
2116
"clsx": "^1.2.1",
22-
"next": "12.2.5",
17+
"next": "13.3.4",
2318
"react": "18.2.0",
2419
"react-dom": "18.2.0",
25-
"react-hook-form": "^7.34.2",
26-
"react-loader-spinner": "^5.3.3",
20+
"react-hook-form": "^7.43.9",
21+
"react-loader-spinner": "^5.3.4",
2722
"use-mutation": "^2.2.1"
2823
},
2924
"devDependencies": {
30-
"@types/node": "18.7.14",
31-
"@types/react": "18.0.18",
32-
"@types/react-dom": "18.0.6",
33-
"autoprefixer": "^10.4.8",
34-
"eslint": "8.23.0",
35-
"eslint-config-next": "12.2.5",
36-
"postcss": "^8.4.16",
37-
"tailwindcss": "^3.1.8",
38-
"typescript": "4.8.2"
25+
"@types/node": "18.16.3",
26+
"@types/react": "18.2.0",
27+
"@types/react-dom": "18.2.1",
28+
"autoprefixer": "^10.4.14",
29+
"eslint": "8.39.0",
30+
"eslint-config-next": "13.3.4",
31+
"postcss": "^8.4.23",
32+
"tailwindcss": "^3.3.2",
33+
"typescript": "5.0.4"
3934
}
4035
}

0 commit comments

Comments
 (0)