Skip to content

Commit c55a181

Browse files
Merge pull request #98 from NexGenStudioDev/dev
Dev
2 parents 7c42130 + 59c568e commit c55a181

15 files changed

Lines changed: 482 additions & 58 deletions

File tree

src/features/SideBar/v1/Section/SideBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import { useTheme } from "@/theme";
1212
import { ThemeToggle } from "@/Component/ui/ThemeToggle";
1313

1414
import SideBarLink from "../Components/SideBarLink";
15-
import { dashboardData } from "@/features/Member/v1/mock/dashboardData";
15+
1616
import useAuthStore from "@/features/Auth/v1/Store/Auth.Store";
17-
import { useEffect } from "react";
17+
1818
import useOrganizationStore from "@/features/Auth/v1/Store/Organization.Store";
1919

2020
const SideBar = () => {

src/features/Tasks/v1/pages/TaskDetailPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ export default function TaskDetailPage() {
458458
onConfirm={() => void handleDelete()}
459459
onCancel={() => setShowDeleteModal(false)}
460460
isLoading={deleteTask.isPending}
461-
danger
461+
462462
/>
463463

464464
<ToastContainer toasts={toasts} onDismiss={dismiss} />

src/features/Tasks/v1/pages/TaskManagementPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export default function TaskManagementPage() {
261261
onConfirm={() => void handleDelete()}
262262
onCancel={() => setTaskToDelete(null)}
263263
isLoading={deleteTask.isPending}
264-
danger
264+
265265
/>
266266

267267
<ToastContainer toasts={toasts} onDismiss={dismiss} />

src/features/Webhooks/v1/Webhook.types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ export interface UpdateWebhookPayload {
4848
events?: WebhookEvent[];
4949
status?: WebhookStatus;
5050
secret?: string;
51+
permissions?: string[];
5152
}
5253

5354
export interface WebhookFilters {

0 commit comments

Comments
 (0)