Skip to content

Commit 2c326dc

Browse files
Fix condition
Fix condition for using message
1 parent e3ac933 commit 2c326dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/scripts/components/server/backups/BackupContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default () => {
3737
return (
3838
<PageContentBlock>
3939
<FlashMessageRender byKey={'backups'} className={'mb-4'}/>
40-
{featureLimits.backups >= 0 &&
40+
{featureLimits.backups !== 0 &&
4141
<p className="text-center text-md text-neutral-400">
4242
You are currently using {backups.length} of {featureLimits.backups} backups.
4343
</p>

0 commit comments

Comments
 (0)