mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
3580ec6db3
[SettingsPage] Small Fixes 7 GitOrigin-RevId: 2716fe13af3f5f6b56d6bba47505fad75ba1adbf
21 lines
662 B
TypeScript
21 lines
662 B
TypeScript
import EmailsSection from '../../js/features/settings/components/emails-section'
|
|
import { UserEmailsProvider } from '../../js/features/settings/context/user-email-context'
|
|
import { LeaversSurveyAlert } from '../../js/features/settings/components/leavers-survey-alert'
|
|
import localStorage from '../../js/infrastructure/local-storage'
|
|
|
|
export const SurveyAlert = () => {
|
|
localStorage.setItem(
|
|
'showInstitutionalLeaversSurveyUntil',
|
|
Date.now() + 1000 * 60 * 60
|
|
)
|
|
return (
|
|
<UserEmailsProvider>
|
|
<LeaversSurveyAlert />
|
|
</UserEmailsProvider>
|
|
)
|
|
}
|
|
|
|
export default {
|
|
title: 'Account Settings / Survey Alerts',
|
|
component: EmailsSection,
|
|
}
|