diff options
Diffstat (limited to 'src/hooks/APIClient.ts')
-rw-r--r-- | src/hooks/APIClient.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hooks/APIClient.ts b/src/hooks/APIClient.ts index cf5d247..68413b0 100644 --- a/src/hooks/APIClient.ts +++ b/src/hooks/APIClient.ts @@ -13,8 +13,8 @@ export const useUser = (username: string | null): Response<User> => { ); }; -export const useProfile = (id: string): Response<Poll[]> => { - return useSWR(id && `/profiles/${id}`, fetcher); +export const useProfile = (username: string): Response<Poll[]> => { + return useSWR(username && `/profiles/${username}`, fetcher); }; export const useFeed = (): Response<Poll[]> => { |