Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Status message not cleared #53810

Merged
merged 13 commits into from
Jan 13, 2025
Prev Previous commit
Next Next commit
fix the default option
  • Loading branch information
nkdengineer committed Jan 9, 2025
commit edcc53d58d2070db16c18dfb71a98da6075cfcd5
2 changes: 1 addition & 1 deletion src/libs/Navigation/AppNavigator/AuthScreens.tsx
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
import useTheme from '@hooks/useTheme';
import useThemeStyles from '@hooks/useThemeStyles';
import {READ_COMMANDS} from '@libs/API/types';
import DateUtils from '@libs/DateUtils';

Check failure on line 22 in src/libs/Navigation/AppNavigator/AuthScreens.tsx

GitHub Actions / Changed files ESLint check

'DateUtils' is defined but never used
import HttpUtils from '@libs/HttpUtils';
import KeyboardShortcut from '@libs/KeyboardShortcut';
import Log from '@libs/Log';
@@ -413,7 +413,7 @@
User.updateDraftCustomStatus({
text: '',
emojiCode: '',
clearAfter: DateUtils.getEndOfToday(),
clearAfter: '',
});
};
useEffect(() => {
Loading