Skip to content

Commit 011c36b

Browse files
feat: Rename games tab to be singular (#95650)
1 parent 934c32c commit 011c36b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

static/app/data/platformPickerCategories.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ const serverless: Set<PlatformKey> = new Set([
160160
'python-serverless',
161161
]);
162162

163-
const games: Set<PlatformKey> = new Set(['unity', 'unreal', 'godot', 'native']);
163+
const gaming: Set<PlatformKey> = new Set(['unity', 'unreal', 'godot', 'native']);
164164

165165
export const createablePlatforms: Set<PlatformKey> = new Set([
166166
...popularPlatformCategories,
@@ -169,7 +169,7 @@ export const createablePlatforms: Set<PlatformKey> = new Set([
169169
...mobile,
170170
...desktop,
171171
...serverless,
172-
...games,
172+
...gaming,
173173
]);
174174

175175
/**
@@ -187,9 +187,9 @@ const categoryList = [
187187
{id: 'desktop', name: t('Desktop'), platforms: desktop},
188188
{id: 'serverless', name: t('Serverless'), platforms: serverless},
189189
{
190-
id: 'games',
191-
name: t('Games'),
192-
platforms: games,
190+
id: 'gaming',
191+
name: t('Gaming'),
192+
platforms: gaming,
193193
display: (organization?: Organization) =>
194194
organization?.features.includes('project-creation-games-tab') ?? false,
195195
},

0 commit comments

Comments
 (0)