Skip to content

Commit

Permalink
Merge pull request #1267 from w3bdesign/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
w3bdesign authored Jul 16, 2024
2 parents 7e9e5f5 + c58b1df commit 83776a2
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 43 deletions.
1 change: 0 additions & 1 deletion blog/src/components/Index/Intro.astro
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ const features = [
}

.feature-card:not(:hover)::before {
/* Reset the transform when not hovering */
transform: translateX(-100%);
transition: transform 0s;
}
Expand Down
46 changes: 22 additions & 24 deletions game/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions game/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
"@prisma/client": "^5.17.0",
"@tanstack/react-query": "4.36.1",
"@tanstack/react-query-devtools": "4.36.1",
"@trpc/client": "^10.45.1",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"chart.js": "^4.4.3",
"date-fns": "^3.3.1",
"next": "^14.2.4",
"date-fns": "^3.6.0",
"next": "^14.2.5",
"react": "18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.3.1",
Expand All @@ -35,22 +35,22 @@
"zod": "^3.23.8"
},
"devDependencies": {
"@types/eslint": "^8.56.5",
"@types/node": "^20.11.25",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"postcss": "^8.4.35",
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"autoprefixer": "^10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "^14.2.5",
"postcss": "^8.4.39",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^5.17.0",
"prisma-docs-generator": "^0.8.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5"
"tailwindcss": "^3.4.6",
"typescript": "^5.5.3"
},
"ct3aMetadata": {
"initVersion": "7.15.0"
Expand Down
4 changes: 2 additions & 2 deletions game/src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
ClerkProvider,
SignedIn,
SignedOut,
RedirectToSignIn,
//RedirectToSignIn,
} from "@clerk/nextjs";
import { Toaster } from "react-hot-toast";
import { ReactQueryDevtools } from "@tanstack/react-query-devtools";
Expand Down Expand Up @@ -48,7 +48,7 @@ function MyApp({ Component, pageProps }: AppProps) {
<Component {...pageProps} />
</SignedIn>
<SignedOut>
<RedirectToSignIn />
RedirectToSignIn
</SignedOut>
</>
)}
Expand Down

0 comments on commit 83776a2

Please sign in to comment.