chore: remove unused useForceUpdate.js (the .ts implementation is the one imported)

Fixes #87

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01PPmy3tPq869XDW4njjVaKA
This commit is contained in:
2026-09-13 00:56:22 -04:00
co-authored by Claude Opus 5
parent 34fe223aa4
commit bd033baf19
-12
View File
@@ -1,12 +0,0 @@
import { useState } from 'react';
export function useForceUpdate() {
const [data, setData] = useState(null);
return [
data,
function forceUpdateHook() {
setData({});
},
];
}