Skip to content

Commit

Permalink
Fixed error
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Dong <[email protected]>
  • Loading branch information
danieldong51 committed Aug 20, 2024
1 parent 88b34a9 commit 1b698e9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import {
* btn2txt - string as content to fill "confirm button"
* openNoteName - Default input value for the field
*/
interface CustomInputModalProps {
type CustomInputModalProps = {
runModal: (value: string) => void;
closeModal: (
event?: React.KeyboardEvent<HTMLDivElement> | React.MouseEvent<HTMLButtonElement, MouseEvent>
Expand All @@ -42,7 +42,7 @@ interface CustomInputModalProps {
btn2txt: string;
openNoteName: string;
helpText: string;
}
};

export const CustomInputModal = (props: CustomInputModalProps) => {
const {
Expand Down

0 comments on commit 1b698e9

Please sign in to comment.