Skip to content

Commit 292b23e

Browse files
Fix usage displayer (#6441)
* Fix wrong logic for usage displayer * Bump version too
1 parent 9c5a5db commit 292b23e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

newIDE/app/src/Profile/CurrentUsageDisplayer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ const CurrentUsageDisplayer = ({
133133
return (
134134
<ColumnStackLayout noMargin>
135135
{hasSubscription ? (
136-
quota.limitReached ? (
136+
!quota.limitReached ? (
137137
<div
138138
style={{
139139
...styles.subscriptionContainer,

newIDE/electron-app/app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gdevelop",
33
"productName": "GDevelop 5",
44
"description": "GDevelop 5 IDE - the open-source, cross-platform game engine designed for everyone",
5-
"version": "5.3.193",
5+
"version": "5.3.194",
66
"author": "GDevelop Team <hello@gdevelop.io>",
77
"license": "MIT",
88
"homepage": "https://gdevelop.io",

0 commit comments

Comments
 (0)