This repository has no description
0

Configure Feed

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

fix

+4 -2
+2
app/src/components/NavigationBar.tsx
··· 1 + 'use client'; 2 + 1 3 import React from 'react'; 2 4 import Link from 'next/link'; 3 5 import Image from 'next/image';
+2 -2
app/src/components/ProfileSearch.tsx
··· 26 26 useEffect(() => { 27 27 const updatePlaceholder = () => { 28 28 if (window.innerWidth <= 480) { 29 - setPlaceholder('Search handle or DID'); 29 + setPlaceholder('Search handle'); 30 30 } else { 31 - setPlaceholder('Search handle or DID'); 31 + setPlaceholder('Search handle'); 32 32 } 33 33 }; 34 34