alpha
Login
or
Join now
atpota.to
/
flushes.app
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix
author
damedotblog
date
1 year ago
(Mar 17, 2025, 11:22 AM -0400)
commit
83a1ebb9
83a1ebb91c9abacabec892d818a378de72b3bb06
parent
8c19dde6
8c19dde6c7ee3fda5ecac952d0a06e613f24c033
+4
-2
2 changed files
Expand all
Collapse all
Unified
Split
app
src
components
NavigationBar.tsx
ProfileSearch.tsx
+2
app/src/components/NavigationBar.tsx
Reviewed
···
1
1
+
'use client';
2
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
Reviewed
···
26
26
useEffect(() => {
27
27
const updatePlaceholder = () => {
28
28
if (window.innerWidth <= 480) {
29
29
-
setPlaceholder('Search handle or DID');
29
29
+
setPlaceholder('Search handle');
30
30
} else {
31
31
-
setPlaceholder('Search handle or DID');
31
31
+
setPlaceholder('Search handle');
32
32
}
33
33
};
34
34