We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a779d20 commit 9402288Copy full SHA for 9402288
src/utils/hooks.ts
@@ -24,7 +24,7 @@ export const useUserInfo = () => {
24
: null;
25
const isExpiringSoon = remainingDays !== null && remainingDays <= 90;
26
const displayRemainingDays = isExpiringSoon
27
- ? `(剩余 ${remainingDays} 天)`
+ ? `(剩余 ${remainingDays} 天,之后转为免费版)`
28
: '';
29
return {
30
user: getToken() ? data : null,
0 commit comments