Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
Fix type error post Tanstack Router upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhose committed Aug 30, 2024
1 parent ee599f8 commit baac6c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/routes/devices.$.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const Route = createFileRoute("/devices/$")({
const result = await context.client.query(
QUERY,
{
deviceId: params._splat,
deviceId: params._splat || "",
userId: viewer.data.viewer.id,
},
{ fetchOptions: { signal } },
Expand Down

0 comments on commit baac6c5

Please sign in to comment.