Skip to content

Commit 13e6b04

Browse files
authored
fix(studio): hide incorrect 'last paused' date in project paused state (supabase#45805)
Hides the 'Project last paused on' date shown in the paused state for free-plan projects, as the date returned by the API is currently incorrect (API team is investigating) Related ticket: FE-3149
1 parent 7092cac commit 13e6b04

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

apps/studio/components/layouts/ProjectLayout/PausedState/ProjectPausedState.tsx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -99,16 +99,6 @@ export const ProjectPausedState = ({ product }: ProjectPausedStateProps) => {
9999
? 'Upgrade to Pro to prevent pauses and unlock features like branching, compute upgrades, and daily backups.'
100100
: 'To prevent future pauses, consider upgrading to Pro.'}
101101
</p>
102-
{!!pauseStatus.last_paused_on && (
103-
<p className="text-foreground-lighter text-sm">
104-
Project last paused on{' '}
105-
<TimestampInfo
106-
className="text-sm"
107-
labelFormat="DD MMM YYYY"
108-
utcTimestamp={pauseStatus.last_paused_on}
109-
/>
110-
</p>
111-
)}
112102
</>
113103
) : (
114104
<p className="text-sm">

0 commit comments

Comments
 (0)