Merge pull request #22255 from overleaf/jdt-rm-free-suggestion-text-on-purchase

[Web] remove uses left indicator after potential add-on purchase

GitOrigin-RevId: c9c839b90eea62b9d0dbeb4ae81321f303582c2c
This commit is contained in:
Jimmy Domagala-Tang
2024-12-06 09:06:53 +00:00
committed by Copybot
parent 605a0394e5
commit 6ba4b0141a
@@ -49,6 +49,8 @@ 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
@@ -95,6 +97,7 @@ export const EditorProvider: FC = ({ children }) => {
)
const [currentPopup, setCurrentPopup] = useState<string | null>(null)
const [assistantUpgraded, setAssistantUpgraded] = useState(false)
const [hasPremiumSuggestion, setHasPremiumSuggestion] = useState<boolean>(
() => {
return Boolean(
@@ -205,6 +208,8 @@ export const EditorProvider: FC = ({ children }) => {
setHasPremiumSuggestion,
premiumSuggestionResetDate,
setPremiumSuggestionResetDate,
assistantUpgraded,
setAssistantUpgraded,
}),
[
cobranding,
@@ -229,6 +234,8 @@ export const EditorProvider: FC = ({ children }) => {
setHasPremiumSuggestion,
premiumSuggestionResetDate,
setPremiumSuggestionResetDate,
assistantUpgraded,
setAssistantUpgraded,
]
)