refactor(webapp): rename query hooks to kebab-case convention

- Rename query hook files from camelCase/PascalCase to kebab-case
- Update all imports throughout the codebase
- Add react-query and react-query-devtools dependencies
- Standardize file naming consistency in hooks/query directory

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ahmed Bouhuolia
2026-03-06 02:53:00 +02:00
parent a0978b79b3
commit 311d4caba8
107 changed files with 5707 additions and 6389 deletions

View File

@@ -1,7 +1,7 @@
// @ts-nocheck
import React from 'react';
import Progress from './Progress';
import {useIsFetching} from 'react-query';
import { useIsFetching } from '@tanstack/react-query';
function AppProgress() {
const isFetching = useIsFetching();