mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
lints
This commit is contained in:
parent
04c396ed1f
commit
f600fb0344
2 changed files with 2 additions and 3 deletions
|
|
@ -4,7 +4,6 @@ import React, {
|
|||
useMemo,
|
||||
useCallback,
|
||||
useRef,
|
||||
useTransition,
|
||||
// @ts-expect-error - unstable_ViewTransition is not yet in @types/react
|
||||
unstable_ViewTransition as ViewTransition,
|
||||
} from "react";
|
||||
|
|
@ -115,7 +114,7 @@ export default function SkinTable({
|
|||
// State for search mode
|
||||
const [searchSkins, setSearchSkins] = useState<GridSkin[]>([]);
|
||||
const [searchError, setSearchError] = useState<string | null>(null);
|
||||
const [searchIsPending, setSearchIsPending] = useState(false);
|
||||
const [_, setSearchIsPending] = useState(false);
|
||||
|
||||
// Debounce timer ref
|
||||
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ export default function FeedbackPage() {
|
|||
try {
|
||||
await sendFeedback(body);
|
||||
setSent(true);
|
||||
} catch (error) {
|
||||
} catch (_) {
|
||||
alert("Failed to send feedback. Please try again.");
|
||||
setSending(false);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue