Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hide-on-bush-x committed Feb 14, 2023
1 parent 5b4a0cb commit b727a39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/provider/masa-context-provider.tsx
Expand Up @@ -111,10 +111,9 @@ export const MasaContextProvider = ({
identityLoading,
walletLoading,
greenLoading,
masaInstance
masaInstance,
]);


useEffect(() => {
if (externalSigner) {
setProvider(externalSigner);
Expand Down
2 changes: 1 addition & 1 deletion src/provider/modules/green/green.ts
Expand Up @@ -44,7 +44,7 @@ export const useGreen = (
queryKey,
async () => {
const list = await masa?.green.list();
return list
return list;
},
{
enabled: !!masa && !!walletAddress,
Expand Down

0 comments on commit b727a39

Please sign in to comment.