a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix icon imports

+4 -10
+2 -7
app/home/Publications.tsx
··· 1 1 "use client"; 2 - import { ButtonPrimary, ButtonSecondary } from "components/Buttons"; 2 + import { ButtonSecondary } from "components/Buttons"; 3 3 import Link from "next/link"; 4 - import { useState } from "react"; 5 4 6 - import { Input } from "components/Input"; 7 5 import { useIdentityData } from "components/IdentityProvider"; 8 - import { NewDraftButton } from "app/lish/[handle]/[publication]/NewDraftButton"; 9 - import { Popover } from "components/Popover"; 10 - import { BlueskyLogin } from "app/login/LoginForm"; 11 6 import { theme } from "tailwind.config"; 12 - import { BlueskyTiny } from "components/Icons"; 7 + import { BlueskyTiny } from "components/Icons/BlueskyTiny"; 13 8 14 9 export const MyPublicationList = () => { 15 10 let { identity } = useIdentityData();
+2 -3
app/lish/createPub/CreatePubForm.tsx
··· 1 1 "use client"; 2 2 import { createPublication } from "./createPublication"; 3 3 import { ButtonPrimary } from "components/Buttons"; 4 - import { AddSmall } from "components/Icons"; 4 + import { AddSmall } from "components/Icons/AddSmall"; 5 5 import { useIdentityData } from "components/IdentityProvider"; 6 6 import { InputWithLabel } from "components/Input"; 7 - import Link from "next/link"; 8 - import { useParams, useRouter } from "next/navigation"; 7 + import { useRouter } from "next/navigation"; 9 8 import { useState, useRef } from "react"; 10 9 11 10 export const CreatePubForm = () => {