aboutsummaryrefslogtreecommitdiff
path: root/src-tauri/bindings
diff options
context:
space:
mode:
authorGeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>2023-04-07 13:40:56 +0200
committerGitHub <noreply@github.com>2023-04-07 13:40:56 +0200
commita07c8de752a3193d6e4e80fffeabde06af747fa0 (patch)
tree366a958b576096bfac989fafed2e66a18677a6e8 /src-tauri/bindings
parent90e9c11560e0b73be301d276bdd76b000270c5d3 (diff)
downloadFlightCore-a07c8de752a3193d6e4e80fffeabde06af747fa0.tar.gz
FlightCore-a07c8de752a3193d6e4e80fffeabde06af747fa0.zip
fix: Change enum value casing (#255)
* fix: Chanege enum value casing as suggested by clippy * fix: Fix forgotten case change
Diffstat (limited to 'src-tauri/bindings')
-rw-r--r--src-tauri/bindings/PullRequestType.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/bindings/PullRequestType.ts b/src-tauri/bindings/PullRequestType.ts
index 2d1fd0a8..582f831a 100644
--- a/src-tauri/bindings/PullRequestType.ts
+++ b/src-tauri/bindings/PullRequestType.ts
@@ -1,3 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
-export type PullRequestType = "MODS" | "LAUNCHER"; \ No newline at end of file
+export type PullRequestType = "Mods" | "Launcher"; \ No newline at end of file