0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 20:42:43 +00:00

give dismisskeys a default

This commit is contained in:
Gazook89
2024-11-08 21:56:35 -06:00
parent d0cf6eebbb
commit f7dfedcd44

View File

@@ -2,7 +2,7 @@
import React from "react";
const { useRef, useEffect } = React;
function Dialog({ dismisskeys, closeText = 'Close', blocking = false, ...rest }) {
function Dialog({ dismisskeys = [], closeText = 'Close', blocking = false, ...rest }) {
const dialogRef = useRef(null);
useEffect(()=>{