diff --git a/teachertool/src/components/CatalogOverlay.tsx b/teachertool/src/components/CatalogOverlay.tsx index 2b33ca096d1c..3d05beaf4d53 100644 --- a/teachertool/src/components/CatalogOverlay.tsx +++ b/teachertool/src/components/CatalogOverlay.tsx @@ -10,6 +10,7 @@ import { getReadableCriteriaTemplate, makeToast } from "../utils"; import { setCatalogOpen } from "../transforms/setCatalogOpen"; import { classList } from "react-common/components/util"; import { announceToScreenReader } from "../transforms/announceToScreenReader"; +import { FocusTrap } from "react-common/components/controls/FocusTrap"; import css from "./styling/CatalogOverlay.module.scss"; interface CatalogHeaderProps { @@ -136,11 +137,13 @@ export const CatalogOverlay: React.FC = ({}) => { } return teacherTool.catalogOpen ? ( -
-
- - + {}}> +
+
+ + +
-
+ ) : null; };