mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-27 08:00:06 +02:00

* Remove the Bootstrap 5 version utilities * Remove Account settings LESS stylesheet and unused styles * Prefer using the OLFormText wrapper component instead of FormText * Remove the Bootstrap 3 version stories * Replace Font Awesome icons to Material icons * Fix the heading hierarchy * Cleanup unused translation * Restore ellipsis to the text of two loading spinners * Add loading button tests back and add some button loading labels --------- Co-authored-by: Tim Down <158919+timdown@users.noreply.github.com> GitOrigin-RevId: 283a9167c8c78bf0fe5062840ded6917dcd6263b
27 lines
671 B
JavaScript
27 lines
671 B
JavaScript
import BetaProgramSection from '../../js/features/settings/components/beta-program-section'
|
|
import { UserProvider } from '../../js/shared/context/user-context'
|
|
|
|
export const SectionNotEnrolled = args => {
|
|
window.metaAttributesCache.set('ol-user', { betaProgram: false })
|
|
|
|
return (
|
|
<UserProvider>
|
|
<BetaProgramSection {...args} />
|
|
</UserProvider>
|
|
)
|
|
}
|
|
|
|
export const SectionEnrolled = args => {
|
|
window.metaAttributesCache.set('ol-user', { betaProgram: true })
|
|
|
|
return (
|
|
<UserProvider>
|
|
<BetaProgramSection {...args} />
|
|
</UserProvider>
|
|
)
|
|
}
|
|
|
|
export default {
|
|
title: 'Account Settings / Beta Program',
|
|
component: BetaProgramSection,
|
|
}
|