Skip to content

Commit

Permalink
add missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
kaitoo1 committed Apr 5, 2024
1 parent 64731e6 commit 138a461
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { SomeoneYouFollowOnFarcasterJoinedQueryFragment$key } from '~/generated/
import { MainTabStackNavigatorProp } from '~/navigation/types';

import { NotificationSkeleton } from '../NotificationSkeleton';
import { useReportError } from 'shared/contexts/ErrorReportingContext';

type SomeoneYouFollowOnFarcasterJoinedProps = {
queryRef: SomeoneYouFollowOnFarcasterJoinedQueryFragment$key;
Expand Down Expand Up @@ -43,6 +44,7 @@ export default function SomeoneYouFollowOnFarcasterJoined({
);

const navigation = useNavigation<MainTabStackNavigatorProp>();
const reportError = useReportError();
const handlePress = useCallback(() => {
if (!notification.user?.username) {
return;
Expand Down

0 comments on commit 138a461

Please sign in to comment.