Skip to content

Commit

Permalink
📦 ci(lint): fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
thrownullexception committed Oct 25, 2023
1 parent 7dafca2 commit a20c31f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/frontend/views/entity/Crud/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function useEntityCrudView() {
} else if (field === "delete" && newState.delete) {
newState.details = true;
}

setEntityCrudSettingsState(newState);
upsertCrudSettingsMutation.mutateAsync(
newState as unknown as Record<string, string>
Expand Down
4 changes: 2 additions & 2 deletions src/frontend/views/roles/Permissions/MutatePermission.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import { FormButton } from "frontend/design-system/components/Button/FormButton"
import { Spacer } from "frontend/design-system/primitives/Spacer";
import { RenderList } from "frontend/design-system/components/RenderList";
import { SectionListItem } from "frontend/design-system/components/Section/SectionList";
import { USER_PERMISSIONS } from "shared/constants/user";
import { PORTAL_PERMISSION_HEIRACHIES } from "shared/logic/permissions/portal";
import {
useCreateRolePermissionMutation,
useRolePermissionDeletionMutation,
useRolePermissions,
} from "../permissions.store";
import { USER_PERMISSIONS } from "shared/constants/user";
import { PORTAL_PERMISSION_HEIRACHIES } from "shared/logic/permissions/portal";

interface IProps {
permissionList: ILabelValue[];
Expand Down

0 comments on commit a20c31f

Please sign in to comment.