Skip to content

Commit 0921642

Browse files
Potential fix for code scanning alert no. 697: Unused variable, import, function or class
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
1 parent 71e3c7f commit 0921642

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

apps/web/components/admin/settings/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ import {
6868
import { Copy, Info } from "lucide-react";
6969
import { Input } from "@components/ui/input";
7070
import Resources from "@components/resources";
71-
import { AddressContext, FeaturesContext } from "@components/contexts";
71+
import { AddressContext } from "@components/contexts";
7272
import { Button } from "@components/ui/button";
7373
import dynamic from "next/dynamic";
7474

@@ -110,7 +110,6 @@ const Settings = (props: SettingsProps) => {
110110
: SITE_SETTINGS_SECTION_GENERAL;
111111
const router = useRouter();
112112
const address = useContext(AddressContext);
113-
const features = useContext(FeaturesContext);
114113
const { toast } = useToast();
115114

116115
const fetch = new FetchBuilder()

0 commit comments

Comments
 (0)