aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/api/Games.ts
diff options
context:
space:
mode:
authorFifthWit <fifthwitbusiness@gmail.com>2025-01-30 13:11:48 -0600
committerFifthWit <fifthwitbusiness@gmail.com>2025-01-30 13:11:48 -0600
commit81342e2579165ebfdb28c749dc5225141721a419 (patch)
tree8e5759c20b92408048fe5ac44f48e2df2a00ab9b /frontend/src/api/Games.ts
parentfixed issues with useCallback (diff)
downloadlphub-81342e2579165ebfdb28c749dc5225141721a419.tar.gz
lphub-81342e2579165ebfdb28c749dc5225141721a419.tar.bz2
lphub-81342e2579165ebfdb28c749dc5225141721a419.zip
switched to double quotes
Diffstat (limited to 'frontend/src/api/Games.ts')
-rw-r--r--frontend/src/api/Games.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/src/api/Games.ts b/frontend/src/api/Games.ts
index 0e47091..b739f80 100644
--- a/frontend/src/api/Games.ts
+++ b/frontend/src/api/Games.ts
@@ -1,9 +1,9 @@
1import axios from 'axios'; 1import axios from "axios";
2import { url } from '@api/Api'; 2import { url } from "@api/Api";
3import { GameChapter, GamesChapters } from '@customTypes/Chapters'; 3import { GameChapter, GamesChapters } from "@customTypes/Chapters";
4import { Game } from '@customTypes/Game'; 4import { Game } from "@customTypes/Game";
5import { Map } from '@customTypes/Map'; 5import { Map } from "@customTypes/Map";
6import { Search } from '@customTypes/Search'; 6import { Search } from "@customTypes/Search";
7 7
8export const get_games = async (): Promise<Game[]> => { 8export const get_games = async (): Promise<Game[]> => {
9 const response = await axios.get(url(`games`)); 9 const response = await axios.get(url(`games`));