Skip to content

Commit

Permalink
refactor: move kotlin to the top when selecting languages
Browse files Browse the repository at this point in the history
  • Loading branch information
satya164 committed Oct 19, 2023
1 parent 00f1986 commit 11d40d7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/create-react-native-library/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ const LANGUAGE_CHOICES: {
types: ProjectType[];
}[] = [
{
title: 'Java & Objective-C',
value: 'java-objc',
title: 'Kotlin & Objective-C',
value: 'kotlin-objc',
types: [
'module-legacy',
'module-new',
Expand All @@ -137,8 +137,8 @@ const LANGUAGE_CHOICES: {
],
},
{
title: 'Kotlin & Objective-C',
value: 'kotlin-objc',
title: 'Java & Objective-C',
value: 'java-objc',
types: [
'module-legacy',
'module-new',
Expand All @@ -149,13 +149,13 @@ const LANGUAGE_CHOICES: {
],
},
{
title: 'Java & Swift',
value: 'java-swift',
title: 'Kotlin & Swift',
value: 'kotlin-swift',
types: ['module-legacy', 'view-legacy'],
},
{
title: 'Kotlin & Swift',
value: 'kotlin-swift',
title: 'Java & Swift',
value: 'java-swift',
types: ['module-legacy', 'view-legacy'],
},
{
Expand Down

0 comments on commit 11d40d7

Please sign in to comment.