fix: resolve permission fallback bug, remove debug code, and cleanup duplication
Logic Errors ------------ - Sidebar: fix permissions fallback so a user with no permissions gets zero access instead of falling back to the full nav list (user?.permissions ?? [] instead of ?? navSections.flatMap(...)) - carMaintanance.service / UseCarsMaintanance: add pagination to the maintenance records fetch instead of loading the entire list at once - api.ts: redact sensitive fields (password, token) before logging the request body in console.debug, to avoid leaking credentials/PII Code Flow Problems ------------------- - OrderFormModal: remove leftover console.log/debug statements and the redundant onClick handler on the submit button - auth: remove the unused src/service/auth.service.ts (axios) and keep only src/services/auth.service.ts (fetch); fix useAuth.ts import path from
This commit is contained in:
@@ -1,11 +1,8 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react";
|
||||
import { Alert, Toast, ArchiveButton } from "@/src/Components/UI";
|
||||
import { BranchTable } from "@/src/Components/Branch/BranchTable";
|
||||
import { BranchFormModal } from "@/src/Components/Branch/BranchFormModal";
|
||||
import { BranchDetailModal } from "@/src/Components/Branch/BranchDetailModal";
|
||||
import { DeleteConfirmModal } from "@/src/Components/Branch/DeleteConfirmModal";
|
||||
import { Alert, Toast, ArchiveButton ,ConfirmDialog } from "@/src/Components/UI";
|
||||
import { BranchDetailModal, BranchTable ,BranchFormModal } from "@/src/Components/Branch";
|
||||
import { useBranches } from "@/src/hooks/useBranch";
|
||||
import type { Branch, BranchFormData } from "@/src/types/branch";
|
||||
import { ArchivedBranchesModal } from "@/src/Components/Branch/archive/ArchivedBranchesModal";
|
||||
@@ -74,16 +71,14 @@ export default function BranchesPage() {
|
||||
)}
|
||||
|
||||
{/* Delete confirmation dialog */}
|
||||
{deleteTarget && (
|
||||
<DeleteConfirmModal
|
||||
branch={deleteTarget}
|
||||
deleting={deleting}
|
||||
onCancel={() => {
|
||||
if (!deleting) setDeleteTarget(null);
|
||||
}}
|
||||
onConfirm={handleDeleteConfirm}
|
||||
/>
|
||||
)}
|
||||
<ConfirmDialog
|
||||
open={!!deleteTarget}
|
||||
loading={deleting}
|
||||
onCancel={() => setDeleteTarget(null)}
|
||||
onConfirm={handleDeleteConfirm}
|
||||
title="حذف الفرع"
|
||||
description={`هل أنت متأكد من حذف الفرع ${deleteTarget?.name ?? ""}؟ لا يمكن التراجع عن هذا الإجراء.`}
|
||||
/>
|
||||
|
||||
{/* Archive browser modal */}
|
||||
{archiveOpen && (
|
||||
|
||||
Reference in New Issue
Block a user