Skip to content

Commit

Permalink
Imported fixes and removed unnecessary types
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajat-Dabade committed Feb 21, 2025
1 parent 4fea376 commit 10b0d66
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {Screens} from '@constants';
import {useServerUrl} from '@context/server';
import {useTheme} from '@context/theme';
import {useIsTablet} from '@hooks/device';
import {DRAFT_OPTIONS_BUTTON} from '@screens/draft_options';
import {DRAFT_OPTIONS_BUTTON} from '@screens/draft_scheduled_post_options';
import {DRAFT_TYPE_SCHEDULED, type DraftType} from '@screens/global_drafts/constants';
import {openAsBottomSheet} from '@screens/navigation';
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
Expand Down
9 changes: 0 additions & 9 deletions types/database/raw_values.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,6 @@ type Draft = {
update_at: number;
};

type ScheduledPost = Draft & {
id: string;
priority?: PostPriority;
scheduled_at: number;
processed_at: number;
error_code: string;
user_id: string;
}

type MyTeam = {
id: string;
roles: string;
Expand Down

0 comments on commit 10b0d66

Please sign in to comment.