Skip to content

Commit ccbe1e8

Browse files
committed
Fix src/pages/iou/request/IOURequestStartPage.tsx
1 parent 2d64ef3 commit ccbe1e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/iou/request/IOURequestStartPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ function IOURequestStartPage({
169169
const [activeTabContainerElement, setActiveTabContainerElement] = useState<HTMLElement | null>(null);
170170

171171
const focusTrapContainerElements = useMemo(() => {
172-
return [headerWithBackBtnContainerElement, tabBarContainerElement, activeTabContainerElement].filter((element) => !!element) as HTMLElement[];
172+
return [headerWithBackBtnContainerElement, tabBarContainerElement, activeTabContainerElement].filter((element) => !!element);
173173
}, [headerWithBackBtnContainerElement, tabBarContainerElement, activeTabContainerElement]);
174174

175175
const {isBetaEnabled} = usePermissions();

0 commit comments

Comments
 (0)