Fork of atp.tools as a universal profile for people on the ATmosphere

fix: remove sf pro in favour of 'system'

Natalie B. 06d35a37 c58cd056

Changed files
-11
src
components
-11
src/components/fontPicker.tsx
··· 14 14 const [isOpen, setIsOpen] = useState(false); 15 15 16 16 const availableFonts = useMemo(() => { 17 - if (isMacOS()) { 18 - return [ 19 - { 20 - name: "SF Pro", 21 - category: "sans" as "sans", 22 - url: "", // No URL needed as it's system font 23 - isSystemFont: true, 24 - }, 25 - ...GOOGLE_FONTS, 26 - ]; 27 - } 28 17 return GOOGLE_FONTS; 29 18 }, []); 30 19