From daf761e145b1d2fab1eae1ed30c49f57ec36d398 Mon Sep 17 00:00:00 2001 From: Bill Date: Tue, 19 Jul 2022 11:42:19 -0400 Subject: [PATCH] Fix missing close function --- src/components/room/widgets/furniture/FurnitureTrophyView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/room/widgets/furniture/FurnitureTrophyView.tsx b/src/components/room/widgets/furniture/FurnitureTrophyView.tsx index 85ae3b29..1f6bf79e 100644 --- a/src/components/room/widgets/furniture/FurnitureTrophyView.tsx +++ b/src/components/room/widgets/furniture/FurnitureTrophyView.tsx @@ -4,7 +4,7 @@ import { useFurnitureTrophyWidget } from '../../../../hooks'; export const FurnitureTrophyView: FC<{}> = props => { - const { objectId = -1, color = '1', senderName = '', date = '', message = '' } = useFurnitureTrophyWidget(); + const { objectId = -1, color = '1', senderName = '', date = '', message = '', close = null } = useFurnitureTrophyWidget(); if(objectId === -1) return null;