While Ryan's answer is correct, you can do this if you are using Expo and Expo Router.
...
const { dismissAll: dismissAllModals } = useBottomSheetModal();
const pathname = usePathname();
const params = useGlobalSearchParams();
useEffect(() => {
dismissAllModals();
}, [pathname, params]);
...