chore: set the default status to false

This commit is contained in:
Kilu
2025-06-25 15:17:29 +08:00
parent af96d0595e
commit 1c73387b2a

View File

@@ -28,7 +28,7 @@ export function WorkspaceItem({
onLeave?: (workspace: Workspace) => void; onLeave?: (workspace: Workspace) => void;
}) { }) {
const { t } = useTranslation(); const { t } = useTranslation();
const [hovered, setHovered] = useState(true); const [hovered, setHovered] = useState(false);
const renderActions = useMemo(() => { const renderActions = useMemo(() => {
if (changeLoading === workspace.id) return <CircularProgress size={16} />; if (changeLoading === workspace.id) return <CircularProgress size={16} />;