a tool for shared writing and social publishing

remove allowlist

-7
-7
app/home/Publications.tsx
··· 12 } from "app/lish/createPub/getPublicationURL"; 13 import { Json } from "supabase/database.types"; 14 15 - let allowlist = [ 16 - "jared@hyperlink.academy", 17 - "brendan@hyperlink.academy", 18 - "celine@hyperlink.academy", 19 - ]; 20 export const MyPublicationList = () => { 21 let { identity } = useIdentityData(); 22 - if (!identity || !identity.email || !allowlist.includes(identity.email)) 23 - return null; 24 if (!identity || !identity.atp_did) return <PubListEmpty />; 25 return ( 26 <div className="pubListWrapper w-full sm:w-[200px] flex flex-col gap-1 sm:gap-2 container p-2 sm:p-1 sm:-m-1 sm:bg-transparent sm:border-0">
··· 12 } from "app/lish/createPub/getPublicationURL"; 13 import { Json } from "supabase/database.types"; 14 15 export const MyPublicationList = () => { 16 let { identity } = useIdentityData(); 17 if (!identity || !identity.atp_did) return <PubListEmpty />; 18 return ( 19 <div className="pubListWrapper w-full sm:w-[200px] flex flex-col gap-1 sm:gap-2 container p-2 sm:p-1 sm:-m-1 sm:bg-transparent sm:border-0">