diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-10 18:42:50 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-10 18:42:50 +0200 |
commit | da6d571b2f656d6937f604dbd066cd3918a172af (patch) | |
tree | 243d2aade88d724bcbb61ac73144a9839a69d5aa | |
parent | f8f89eaa1fa92a01294ac20c598eec43d211ea20 (diff) | |
download | FlightCore-da6d571b2f656d6937f604dbd066cd3918a172af.tar.gz FlightCore-da6d571b2f656d6937f604dbd066cd3918a172af.zip |
Fix using incorrect typing
-rw-r--r-- | src-ui/src/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-ui/src/main.ts b/src-ui/src/main.ts index f8bdbe41..96481a83 100644 --- a/src-ui/src/main.ts +++ b/src-ui/src/main.ts @@ -13,7 +13,7 @@ const button_manual_find_string = "Manually select Titanfall2 install location"; interface GameInstall { game_path: string; - install_type: number; + install_type: string; } // Stores the overall state of the application |