refactor: Упростить структуру рендеринга в main.jsx, удалив обертку React.StrictMode для улучшения читаемости кода
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 1m53s

This commit is contained in:
2025-08-27 15:28:12 +07:00
parent 9e16a0966f
commit 54377afba1
+3 -5
View File
@@ -13,9 +13,7 @@ import('@tabler/core/dist/js/tabler.min.js').then((mod) => {
const queryClient = new QueryClient()
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<QueryClientProvider client={queryClient}>
<App />
</QueryClientProvider>
</React.StrictMode>
<QueryClientProvider client={queryClient}>
<App />
</QueryClientProvider>
)