Skip to content

Commit 89aa6cc

Browse files
committed
Make fmt
1 parent 930b74b commit 89aa6cc

File tree

1 file changed

+1
-1
lines changed
  • site/src/pages/WorkspacesPage

1 file changed

+1
-1
lines changed

site/src/pages/WorkspacesPage/data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const useWorkspacesData = ({
3434
limit: limit,
3535
// If the page is <= 0, just use offset 0. This usually happens
3636
// if the page is not provided.
37-
offset: page <= 0 ? 0 : (page-1)*limit ,
37+
offset: page <= 0 ? 0 : (page - 1) * limit,
3838
}),
3939
refetchInterval: 5_000,
4040
})

0 commit comments

Comments
 (0)