We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f3fc0e commit 5eda6c8Copy full SHA for 5eda6c8
packages/search/src/routes/$profileId.lazy.tsx
@@ -24,7 +24,7 @@ export const Route = createLazyFileRoute('/$profileId')({
24
function Profile() {
25
const { profileId } = Route.useParams();
26
const { data: profile, isLoading, error } = useProfile(profileId);
27
- const { data: followersData, isLoading: followersLoading, error: followersError } = useFollowers(profileId);
+ const { data: followersData } = useFollowers(profileId);
28
const [copySuccess, setCopySuccess] = useState('');
29
30
// Helper function to copy text to clipboard
0 commit comments