chore: remove unused imports from React files

This commit is contained in:
gitea_admin 2024-02-07 13:42:21 +05:45
parent 84c6e8a388
commit 1de846fb64
62 changed files with 205 additions and 206 deletions

View file

@ -3,7 +3,7 @@ import { createSampleDataInstall, updateInstall } from '@services/install/instal
import { swrFetcher } from '@services/utils/ts/requests';
import { useRouter } from 'next/navigation';
import React from 'react'
import useSWR, { mutate } from "swr";
import useSWR from "swr";
function SampleData() {
const { data: install, error: error, isLoading } = useSWR(`${getAPIUrl()}install/latest`, swrFetcher);