From e40f07211f5f15dcb138e2520a76d13afd3c0cfd Mon Sep 17 00:00:00 2001 From: FifthWit Date: Thu, 30 Jan 2025 10:44:30 -0600 Subject: formatted with prettier --- frontend/src/api/Auth.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'frontend/src/api/Auth.ts') diff --git a/frontend/src/api/Auth.ts b/frontend/src/api/Auth.ts index 875c7e5..e495d47 100644 --- a/frontend/src/api/Auth.ts +++ b/frontend/src/api/Auth.ts @@ -1,8 +1,8 @@ -import axios from "axios"; -import { url } from "@api/Api"; +import axios from 'axios'; +import { url } from '@api/Api'; export const get_token = async (): Promise => { - const response = await axios.get(url(`token`)) + const response = await axios.get(url(`token`)); if (!response.data.success) { return undefined; } @@ -10,5 +10,5 @@ export const get_token = async (): Promise => { }; export const delete_token = async () => { - await axios.delete(url("token")); + await axios.delete(url('token')); }; -- cgit v1.2.3