Skip to content

Commit

Permalink
fix: eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
sirpy committed Nov 27, 2024
1 parent 27e4d77 commit 97098a1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/app/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
// Import the crypto getRandomValues shim (**BEFORE** the shims)
import 'react-native-get-random-values';

Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/components/CollectiveHomeCard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Image, StyleSheet, Text, TouchableOpacity, TouchableOpacityProps, View } from 'react-native';
import { Image, StyleSheet, Text, TouchableOpacity, View } from 'react-native';

import { InterSemiBold, InterSmall } from '../utils/webFonts';
import useCrossNavigate from '../routes/useCrossNavigate';
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/hooks/useFetchFullName.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export function useFetchFullNames(addresses: string[]): any {

const hashedAddresses = Object.keys(addressToHashMapping);

const { data, error } = useMongoDbQuery<UserProfilesResponse>(findProfiles, {
const { data } = useMongoDbQuery<UserProfilesResponse>(findProfiles, {
variables: {
query: {
index: { walletAddress: { hash_in: hashedAddresses } },
Expand Down

0 comments on commit 97098a1

Please sign in to comment.