mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
🐜 fix: Fix dynamodb errors when trying to authenticate (#208)
## Description This fixes an issue where `openauthjs` throws timeout errors while attempting to access DynamoDB > I am so glad this was not a major issue 😅 ## Related Issues [OpenAuth Error TypeError: fetch failed while accessing DynamoDB on AWS #5543 ](https://github.com/sst/sst/issues/5543) [Error TypeError: fetch failed while accessing DynamoDB on AWS #220](https://github.com/toolbeam/openauth/issues/220) ## Type of Change - [x] Bug fix (non-breaking change) - [ ] New feature (non-breaking change) - [ ] Breaking change (fix or feature that changes existing functionality) - [ ] Documentation update - [ ] Other (please describe): ## Checklist - [x] I have updated relevant documentation - [ ] My code follows the project's coding style - [ ] My changes generate no new warnings/errors ## Screenshots/Demo 
This commit is contained in:
@@ -31,6 +31,7 @@
|
||||
"@aws-sdk/client-sesv2": "^3.753.0",
|
||||
"@instantdb/admin": "^0.17.7",
|
||||
"@neondatabase/serverless": "^0.10.4",
|
||||
"@openauthjs/openauth": "0.4.3",
|
||||
"@openauthjs/openevent": "^0.0.27",
|
||||
"@polar-sh/sdk": "^0.26.1",
|
||||
"drizzle-orm": "^0.39.3",
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
"typescript": "^5.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@openauthjs/openauth": "^0.3.9",
|
||||
"@openauthjs/openauth": "0.4.3",
|
||||
"hono": "^4.6.15",
|
||||
"hono-openapi": "^0.3.1",
|
||||
"partysocket": "1.0.3"
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
"@macaron-css/solid": "^1.5.3",
|
||||
"@modular-forms/solid": "^0.25.1",
|
||||
"@nestri/core": "*",
|
||||
"@openauthjs/openauth": "0.4.3",
|
||||
"@solid-primitives/storage": "^4.3.1",
|
||||
"@solidjs/router": "^0.15.3",
|
||||
"modern-normalize": "^3.0.1",
|
||||
|
||||
@@ -87,10 +87,10 @@ export const App: Component = () => {
|
||||
<Route
|
||||
path="*"
|
||||
component={(props) => (
|
||||
// <AuthProvider>
|
||||
// {props.children}
|
||||
props.children
|
||||
// </AuthProvider>
|
||||
<AuthProvider>
|
||||
{props.children}
|
||||
</AuthProvider>
|
||||
// props.children
|
||||
)}
|
||||
>
|
||||
<Route path="new" component={CreateTeamComponent} />
|
||||
|
||||
@@ -259,6 +259,7 @@ const InputRadioContainer = styled("div", {
|
||||
base: {
|
||||
...inputStyles,
|
||||
display: "flex",
|
||||
userSelect: "none",
|
||||
flexDirection: "column",
|
||||
height: "auto",
|
||||
position: "relative",
|
||||
|
||||
Reference in New Issue
Block a user