[go: nahoru, domu]

Skip to content

Commit

Permalink
3.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed Feb 28, 2024
1 parent f916e0d commit d061686
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/WarriorHappy/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"expo": {
"name": "WarriorHappy",
"slug": "WarriorHappy",
"version": "3.2.4",
"version": "3.2.6",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
Expand Down
2 changes: 1 addition & 1 deletion apps/WarriorHappy/ios/WarriorHappy/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>3.2.4</string>
<string>3.2.6</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down
2 changes: 1 addition & 1 deletion apps/WarriorHappy/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "warriorhappy",
"main": "index.ts",
"version": "3.2.4",
"version": "3.2.6",
"scripts": {
"start": "expo start",
"android": "expo run:android",
Expand Down
6 changes: 3 additions & 3 deletions apps/WarriorHappy/src/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,21 +211,21 @@ function MatchScoutAssignment({
.map<React.ReactNode>((x) => (
<Text
className={
x === assignment.team ? "bg-amber-300" : undefined
x === assignment.team ? "bg-yellow-300" : undefined
}
>
{x}{" "}
</Text>
))
.reduce((prev, curr) => [prev, ", ", curr])}
</Text>
<Text className="text-blue-400">
<Text className="text-blue-500">
Blue:{" "}
{assignment.blue
.map<React.ReactNode>((x) => (
<Text
className={
x === assignment.team ? "bg-amber-300" : undefined
x === assignment.team ? "bg-yellow-300" : undefined
}
>
{x}{" "}
Expand Down

0 comments on commit d061686

Please sign in to comment.