Skip to content

Commit

Permalink
fix: mask.hide key
Browse files Browse the repository at this point in the history
  • Loading branch information
linjinze999 committed Sep 12, 2024
1 parent 7306f10 commit f241914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hippy_ui_react/src/components/Mask/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class Mask extends Component<PropsWithChildren<MaskProps>, {}> {
/**
* 收起Mask
* */
static hide(options?: { key: string }) {
static hide(options?: { key?: string }) {
const { key = 'default' } = options || {};
if (!key) {
GLOBAL_VIEW_MASK_LIST = [];
Expand Down

0 comments on commit f241914

Please sign in to comment.