This commit is contained in:
Sewmina 2024-07-31 21:19:26 +05:30
parent f91f10178b
commit d1b938eece
2 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,8 @@
"use client";
import { useEffect, useState } from 'react';
import { useEffect } from 'react';
import axios from 'axios';
import { PrivyProvider, usePrivy } from '@privy-io/react-auth';
import { usePrivy } from '@privy-io/react-auth';
import Link from 'next/link';
const Home: React.FC = () => {

View File

@ -19,7 +19,8 @@
"noImplicitReturns": false,
"noPropertyAccessFromIndexSignature": false,
"exactOptionalPropertyTypes": false,
"moduleResolution": "node"
"moduleResolution": "node",
"noUnusedLocals": false
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
"exclude": ["node_modules"]