[go: nahoru, domu]

Skip to content

Commit

Permalink
vbump
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatXliner committed Feb 28, 2024
1 parent f1f3679 commit cd39fb6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 14 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.2",
"version": "3.2.3",
"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.2</string>
<string>3.2.3</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.2",
"version": "3.2.3",
"scripts": {
"start": "expo start",
"android": "expo run:android",
Expand Down
13 changes: 3 additions & 10 deletions apps/WarriorHappy/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
{
"compilerOptions": {
"jsx": "react",
"jsx": "react-jsx",
"strict": true,
"paths": {
"@/*": [
"./*"
],
"@/*": ["./*"],
"~/*": ["./src/*"]
}
},
"include": [
"**/*.ts",
"**/*.tsx",
".expo/types/**/*.ts",
"expo-env.d.ts"
],
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts"],
"extends": "expo/tsconfig.base"
}
2 changes: 1 addition & 1 deletion packages/api/src/router/scouting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const scoutingRouter = createTRPCRouter({
}),
)
.mutation(async ({ ctx, input }) => {
const { error, data } = await ctx.supabase
const { data, error } = await ctx.supabase
.from("assignments")
.update({ event_log: input.eventLog })
.eq("match", input.matchKey)
Expand Down

0 comments on commit cd39fb6

Please sign in to comment.