Skip to content

Commit 1662a55

Browse files
committed
fix: apply biome fixes
1 parent b8d92fa commit 1662a55

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

site/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,11 @@
191191
"vite-plugin-checker": "0.9.3",
192192
"vite-plugin-turbosnap": "1.0.3"
193193
},
194-
"browserslist": ["chrome 110", "firefox 111", "safari 16.0"],
194+
"browserslist": [
195+
"chrome 110",
196+
"firefox 111",
197+
"safari 16.0"
198+
],
195199
"resolutions": {
196200
"optionator": "0.9.3",
197201
"semver": "7.6.2"

site/src/pages/WorkspacesPage/WorkspacesPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { useStatusFilterMenu, useTemplateFilterMenu } from "./filter/menus";
2727
* workspace is in the middle of a transition and will eventually reach a more
2828
* stable state/status.
2929
*/
30-
export const ACTIVE_BUILD_STATUSES: readonly WorkspaceStatus[] = [
30+
const ACTIVE_BUILD_STATUSES: readonly WorkspaceStatus[] = [
3131
"canceling",
3232
"deleting",
3333
"pending",

site/src/pages/WorkspacesPage/filter/WorkspacesFilter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Filter, MenuSkeleton, UseFilterResult, type useFilter } from "components/Filter/Filter";
1+
import { Filter, MenuSkeleton, type UseFilterResult } from "components/Filter/Filter";
22
import { type UserFilterMenu, UserMenu } from "components/Filter/UserFilter";
33
import { useDashboard } from "modules/dashboard/useDashboard";
44
import {

0 commit comments

Comments
 (0)