Fix incorrect type on create action button action

This commit is contained in:
sianida26 2024-05-11 00:53:49 +07:00
parent d4851764fe
commit 2bb3ef173b

View File

@ -9,7 +9,7 @@ import React from "react";
interface Action {
label: string;
action?: () => void | string;
action?: (() => void) | string;
variant?: ActionIconVariant;
permission?: boolean;
icon: React.ReactNode;