Skip to content

Commit d061686

Browse files
committed
3.2.6
1 parent f916e0d commit d061686

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

apps/WarriorHappy/app.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"expo": {
33
"name": "WarriorHappy",
44
"slug": "WarriorHappy",
5-
"version": "3.2.4",
5+
"version": "3.2.6",
66
"orientation": "portrait",
77
"icon": "./assets/images/icon.png",
88
"scheme": "myapp",

apps/WarriorHappy/ios/WarriorHappy/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundlePackageType</key>
2222
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
2323
<key>CFBundleShortVersionString</key>
24-
<string>3.2.4</string>
24+
<string>3.2.6</string>
2525
<key>CFBundleSignature</key>
2626
<string>????</string>
2727
<key>CFBundleURLTypes</key>

apps/WarriorHappy/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "warriorhappy",
33
"main": "index.ts",
4-
"version": "3.2.4",
4+
"version": "3.2.6",
55
"scripts": {
66
"start": "expo start",
77
"android": "expo run:android",

apps/WarriorHappy/src/app/index.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -211,21 +211,21 @@ function MatchScoutAssignment({
211211
.map<React.ReactNode>((x) => (
212212
<Text
213213
className={
214-
x === assignment.team ? "bg-amber-300" : undefined
214+
x === assignment.team ? "bg-yellow-300" : undefined
215215
}
216216
>
217217
{x}{" "}
218218
</Text>
219219
))
220220
.reduce((prev, curr) => [prev, ", ", curr])}
221221
</Text>
222-
<Text className="text-blue-400">
222+
<Text className="text-blue-500">
223223
Blue:{" "}
224224
{assignment.blue
225225
.map<React.ReactNode>((x) => (
226226
<Text
227227
className={
228-
x === assignment.team ? "bg-amber-300" : undefined
228+
x === assignment.team ? "bg-yellow-300" : undefined
229229
}
230230
>
231231
{x}{" "}

0 commit comments

Comments
 (0)