Skip to content

Commit

Permalink
feat: save discussion alert dismissal
Browse files Browse the repository at this point in the history
  • Loading branch information
CefBoud committed Aug 23, 2024
1 parent 9e49a74 commit b036f93
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/course-outline/page-alerts/PageAlerts.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,11 @@ const PageAlerts = ({
const intl = useIntl();
const dispatch = useDispatch();
const studioBaseUrl = getConfig().STUDIO_BASE_URL;
const discussionAlertDismissKey = `discussionAlertDismissed-${courseId}`;
const [showConfigAlert, setShowConfigAlert] = useState(true);
const [showDiscussionAlert, setShowDiscussionAlert] = useState(true);
const [showDiscussionAlert, setShowDiscussionAlert] = useState(
localStorage.getItem(discussionAlertDismissKey) === null

Check failure on line 47 in src/course-outline/page-alerts/PageAlerts.jsx

View workflow job for this annotation

GitHub Actions / tests

Missing trailing comma
);
const { newFiles, conflictingFiles, errorFiles } = useSelector(getPasteFileNotices);

const getAssetsUrl = () => {
Expand Down Expand Up @@ -83,6 +86,7 @@ const PageAlerts = ({

const onDismiss = () => {
setShowDiscussionAlert(false);
localStorage.setItem(discussionAlertDismissKey, 'true');
};

return (
Expand Down

0 comments on commit b036f93

Please sign in to comment.