diff --git a/frontend/app/components/shared/SessionListContainer/components/SessionSettingButton/SessionSettingButton.tsx b/frontend/app/components/shared/SessionListContainer/components/SessionSettingButton/SessionSettingButton.tsx index 897a59754..5d76f8979 100644 --- a/frontend/app/components/shared/SessionListContainer/components/SessionSettingButton/SessionSettingButton.tsx +++ b/frontend/app/components/shared/SessionListContainer/components/SessionSettingButton/SessionSettingButton.tsx @@ -2,6 +2,7 @@ import { useModal } from 'App/components/Modal'; import React from 'react'; import SessionSettings from 'Shared/SessionSettings'; import { Button } from 'UI'; +import { Tooltip } from 'react-tippy'; function SessionSettingButton(props: any) { const { showModal } = useModal(); @@ -12,7 +13,10 @@ function SessionSettingButton(props: any) { return (
-
); }