Skip to content

Commit 64829bb

Browse files
committed
[FIX] Fix build errors
1 parent b0f2d37 commit 64829bb

2 files changed

Lines changed: 0 additions & 55 deletions

File tree

ui/src/components/CreateProjectModal.tsx

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -32,43 +32,6 @@ const COVER_GRADIENTS = [
3232
"linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #f9a8d4 100%)",
3333
];
3434

35-
const IconGlobe = () => (
36-
<svg
37-
width="14"
38-
height="14"
39-
viewBox="0 0 24 24"
40-
fill="none"
41-
stroke="currentColor"
42-
strokeWidth="2"
43-
strokeLinecap="round"
44-
strokeLinejoin="round"
45-
aria-hidden
46-
>
47-
<circle cx="12" cy="12" r="10" />
48-
<line x1="2" y1="12" x2="22" y2="12" />
49-
<path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z" />
50-
</svg>
51-
);
52-
53-
const IconUsers = () => (
54-
<svg
55-
width="14"
56-
height="14"
57-
viewBox="0 0 24 24"
58-
fill="none"
59-
stroke="currentColor"
60-
strokeWidth="2"
61-
strokeLinecap="round"
62-
strokeLinejoin="round"
63-
aria-hidden
64-
>
65-
<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" />
66-
<circle cx="9" cy="7" r="4" />
67-
<path d="M22 21v-2a4 4 0 0 0-3-3.87" />
68-
<path d="M16 3.13a4 4 0 0 1 0 7.75" />
69-
</svg>
70-
);
71-
7235
const IconInfo = () => (
7336
<svg
7437
width="14"

ui/src/pages/SettingsPage.tsx

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import { useAuth } from "../contexts/AuthContext";
1818
import { useTheme } from "../contexts/ThemeContext";
1919
import { workspaceService } from "../services/workspaceService";
2020
import { ProjectNetworkSelect } from "../components/ProjectNetworkSelect";
21-
import { ProjectLeadSelect } from "../components/ProjectLeadSelect";
2221
import { projectService } from "../services/projectService";
2322
import { issueService } from "../services/issueService";
2423
import { labelService } from "../services/labelService";
@@ -624,23 +623,6 @@ const IconLink = () => (
624623
<path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" />
625624
</svg>
626625
);
627-
const IconGlobe = () => (
628-
<svg
629-
width="16"
630-
height="16"
631-
viewBox="0 0 24 24"
632-
fill="none"
633-
stroke="currentColor"
634-
strokeWidth="2"
635-
strokeLinecap="round"
636-
strokeLinejoin="round"
637-
aria-hidden
638-
>
639-
<circle cx="12" cy="12" r="10" />
640-
<path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" />
641-
<path d="M2 12h20" />
642-
</svg>
643-
);
644626
const IconTag = () => (
645627
<svg
646628
width="16"

0 commit comments

Comments
 (0)