Merge pull request #25568 from overleaf/jdt-rely-on-user-feats-for-assist-paywall-button

Rely on user features when showing the get assist paywall button post upgrade

GitOrigin-RevId: 2218171eb57996ee962b4ddc94c1749ad65b9c1b
This commit is contained in:
Jimmy Domagala-Tang
2025-05-13 08:12:22 -04:00
committed by Copybot
parent cf81524f72
commit 6c641bd0b6
@@ -40,8 +40,6 @@ export const EditorContext = createContext<
currentPopup: string | null
setCurrentPopup: Dispatch<SetStateAction<string | null>>
setOutOfSync: (value: boolean) => void
assistantUpgraded: boolean
setAssistantUpgraded: (value: boolean) => void
hasPremiumSuggestion: boolean
setHasPremiumSuggestion: (value: boolean) => void
setPremiumSuggestionResetDate: (date: Date) => void
@@ -89,7 +87,6 @@ export const EditorProvider: FC<React.PropsWithChildren> = ({ children }) => {
)
const [currentPopup, setCurrentPopup] = useState<string | null>(null)
const [assistantUpgraded, setAssistantUpgraded] = useState(false)
const [hasPremiumSuggestion, setHasPremiumSuggestion] = useState<boolean>(
() => {
return Boolean(
@@ -205,8 +202,6 @@ export const EditorProvider: FC<React.PropsWithChildren> = ({ children }) => {
setHasPremiumSuggestion,
premiumSuggestionResetDate,
setPremiumSuggestionResetDate,
assistantUpgraded,
setAssistantUpgraded,
writefullInstance,
setWritefullInstance,
}),
@@ -232,8 +227,6 @@ export const EditorProvider: FC<React.PropsWithChildren> = ({ children }) => {
setHasPremiumSuggestion,
premiumSuggestionResetDate,
setPremiumSuggestionResetDate,
assistantUpgraded,
setAssistantUpgraded,
writefullInstance,
setWritefullInstance,
]