mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #17693 from overleaf/msm-hide-grammarly-sp
Prevent grammarly ad from rendering in CE/SP GitOrigin-RevId: 3ef191f282f2ce682236710df9ca32a087271c4c
This commit is contained in:
parent
7439fefb04
commit
d7d63e0f51
1 changed files with 5 additions and 1 deletions
|
@ -6,8 +6,12 @@ import useRemindMeLater from '@/shared/hooks/use-remind-me-later'
|
|||
import GrammarlyLogo from '@/shared/svgs/grammarly-logo'
|
||||
import * as eventTracking from '../../../infrastructure/event-tracking'
|
||||
import useWaitForGrammarlyCheck from '@/shared/hooks/use-wait-for-grammarly-check'
|
||||
import getMeta from '@/utils/meta'
|
||||
import { ExposedSettings } from '../../../../../types/exposed-settings'
|
||||
|
||||
export default function GrammarlyAdvert() {
|
||||
const { isOverleaf } = getMeta('ol-ExposedSettings') as ExposedSettings
|
||||
|
||||
const [show, setShow] = useState(false)
|
||||
const { t } = useTranslation()
|
||||
|
||||
|
@ -57,7 +61,7 @@ export default function GrammarlyAdvert() {
|
|||
remindThemLater()
|
||||
}, [remindThemLater])
|
||||
|
||||
if (!show) {
|
||||
if (!isOverleaf || !show) {
|
||||
return null
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue