From 81342e2579165ebfdb28c749dc5225141721a419 Mon Sep 17 00:00:00 2001 From: FifthWit Date: Thu, 30 Jan 2025 13:11:48 -0600 Subject: switched to double quotes --- frontend/src/api/Auth.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'frontend/src/api/Auth.ts') diff --git a/frontend/src/api/Auth.ts b/frontend/src/api/Auth.ts index e495d47..98c6d36 100644 --- a/frontend/src/api/Auth.ts +++ b/frontend/src/api/Auth.ts @@ -1,5 +1,5 @@ -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`)); @@ -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