Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiscs committed Jan 5, 2024
1 parent df44dfb commit 1e0d008
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion app/entry.server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function handleRequest(
remixContext: EntryContext,
loadContext: AppLoadContext,
) {
return isbot(request.headers.get("user-agent") || "server") // if there's no user agent, it's probably a bot
return isbot(request.headers.get("user-agent")) // if there's no user agent, it's probably a bot
? handleBotRequest(request, responseStatusCode, responseHeaders, remixContext)
: handleBrowserRequest(request, responseStatusCode, responseHeaders, remixContext);
}
Expand Down
60 changes: 30 additions & 30 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"typecheck": "tsc"
},
"dependencies": {
"@choral-io/gommerce-protobuf-node": "~1.0.0-beta.21",
"@connectrpc/connect-node": "~1.2.0",
"@choral-io/gommerce-protobuf-node": "~1.0.0-beta.22",
"@connectrpc/connect-node": "~1.2.1",
"@remix-run/css-bundle": "~2.4.1",
"@remix-run/node": "~2.4.1",
"@remix-run/react": "~2.4.1",
"@remix-run/serve": "~2.4.1",
"@tabler/icons-react": "~2.45.0",
"clsx": "~2.1.0",
"isbot": "~4.1.1",
"isbot": "~4.3.0",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"remix-utils": "~7.5.0",
Expand All @@ -38,7 +38,7 @@
"daisyui": "~4.5.0",
"eslint": "~8.56.0",
"eslint-config-prettier": "~9.1.0",
"postcss": "~8.4.32",
"postcss": "~8.4.33",
"prettier": "~3.1.1",
"prettier-plugin-tailwindcss": "~0.5.10",
"tailwindcss": "~3.4.0",
Expand Down

0 comments on commit 1e0d008

Please sign in to comment.