Skip to content

Commit 8dd5046

Browse files
authored
feat: fix import of components (#103)
* feat: fe progress
1 parent d3ed469 commit 8dd5046

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

apps/client/src/sections/App/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import { PageContent } from "@/components/PageContent";
2-
import { Link, PlusIcon } from "lucide-react";
2+
import { PlusIcon } from "lucide-react";
33
import { postMocks } from "mocks/postMocks";
44
import { Badge } from "@/components/ui/Badge";
55
import { Button } from "@/components/ui/Button";
66
import { PostAuthor } from "@/sections/Post/PostAuthor";
77
import { PostCard } from "@/sections/Post/PostCard";
8+
import { Link } from "@tanstack/react-router";
89

910
export const HomePage = () => {
1011
return (

apps/client/src/sections/Communities/CommunityPage.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
import { PageContent } from "@/components/PageContent";
22
import { Button } from "@/components/ui/Button";
3-
import { Avatar } from "@radix-ui/react-avatar";
43
import { useParams } from "@tanstack/react-router";
5-
import { UserPlusIcon, PlusIcon, Badge } from "lucide-react";
4+
import { UserPlusIcon, PlusIcon } from "lucide-react";
65
import { membershipMocks } from "mocks/membershipMocks";
76
import { postMocks } from "mocks/postMocks";
87
import { PostAuthor } from "../Post/PostAuthor";
98
import { PostCard } from "../Post/PostCard";
109
import { Tabs } from "@/components/ui/Tabs";
10+
import { Badge } from "@/components/ui/Badge";
11+
import { Avatar } from "@/components/Avatar";
1112

1213
export const CommunityPage = () => {
1314
const communityParams = useParams({ from: "/_left-sidebar/communities/$id" });

0 commit comments

Comments
 (0)