diff --git a/apps/web/src/app/api/upload-key/route.tsx b/apps/web/src/app/api/upload-key/route.tsx index baf6cbbc..6b7e03e9 100644 --- a/apps/web/src/app/api/upload-key/route.tsx +++ b/apps/web/src/app/api/upload-key/route.tsx @@ -34,11 +34,11 @@ export async function POST(request: NextRequest): Promise { body: JSON.stringify(keyRestrictions), } - const jwtRepsonse = await fetch( + const jwtResponse = await fetch( 'https://api.pinata.cloud/users/generateApiKey', options ) - const json = await jwtRepsonse.json() + const json = await jwtResponse.json() const { JWT } = json return NextResponse.json({ JWT }, { status: 200 }) } catch (e) { diff --git a/apps/web/src/modules/create-proposal/components/TransactionForm/Migration/MigrateDAOForm.tsx b/apps/web/src/modules/create-proposal/components/TransactionForm/Migration/MigrateDAOForm.tsx index 322ea64f..33c56e12 100644 --- a/apps/web/src/modules/create-proposal/components/TransactionForm/Migration/MigrateDAOForm.tsx +++ b/apps/web/src/modules/create-proposal/components/TransactionForm/Migration/MigrateDAOForm.tsx @@ -117,7 +117,7 @@ export const MigrateDAOForm = () => { {error && ( - An unexpected error has occured please try again + An unexpected error has occurred please try again )}