Skip to content

Commit c5b3a6c

Browse files
author
joeldevelops
committed
Fix build errors
1 parent 0f93b9a commit c5b3a6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/app/src/components/WorkspaceMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { DropdownMenu } from '@radix-ui/themes';
22
import { useEffect, useState } from 'react';
3-
import { NewWorkspaceDialog } from './NewWorkspaceDialog';
3+
// import { NewWorkspaceDialog } from './NewWorkspaceDialog';
44

55
export default function WorkspaceMenu() {
66
const [workspaces, setWorkspaces] = useState([]);

packages/app/src/pages/workspaces/WorkspacesList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import ChangeThemeButton from "../../components/ChangeThemeButton";
77

88

99
export default function WorkspacesList() {
10-
const [workspaces, setWorkspaces] = useState<Workspace[]>([]);
10+
const [workspaces] = useState<Workspace[]>([]);
1111
const [loading] = useState(false);
1212
const [searchText, setSearchText] = useState("");
1313

0 commit comments

Comments
 (0)