Remove redundant files

This commit is contained in:
Novattz
2025-11-12 15:02:13 +01:00
parent 931ecc0d92
commit 0a5f00d3fb
4 changed files with 0 additions and 147 deletions

View File

@@ -1,14 +0,0 @@
import { useUpdateChecker } from '@/hooks/useUpdateChecker'
/**
* Simple component that uses the update checker hook
* Can be dropped in anywhere in the app
*/
const UpdateNotifier = () => {
useUpdateChecker()
// This component doesn't render anything
return null
}
export default UpdateNotifier

View File

@@ -1,5 +0,0 @@
// Update checker implementation
export { default as useUpdateChecker } from '@/hooks/useUpdateChecker'
// Simple component for using the checker
export { default as UpdateNotifier } from './UpdateNotifier'