We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a114a commit e6bfc17Copy full SHA for e6bfc17
app/root.tsx
@@ -100,7 +100,7 @@ export async function loader({ request }: DataFunctionArgs) {
100
// them in the database. Maybe they were deleted? Let's log them out.
101
await authenticator.logout(request, { redirectTo: '/' })
102
}
103
- const { flash, headers: flasHeaders } = await getFlashSession(request)
+ const { flash, headers: flashHeaders } = await getFlashSession(request)
104
105
return json(
106
{
@@ -119,7 +119,7 @@ export async function loader({ request }: DataFunctionArgs) {
119
120
headers: combineHeaders(
121
{ 'Server-Timing': timings.toString() },
122
- flasHeaders,
+ flashHeaders,
123
),
124
},
125
)
0 commit comments