fix prettier conflicts

This commit is contained in:
Loewy
2024-02-06 11:34:52 -08:00
parent eb2534ff94
commit 035ce9f1b9
9 changed files with 117 additions and 104 deletions

View File

@@ -15,7 +15,7 @@ import React, {
useState,
} from "react";
import { API_URI } from '../config'
import { API_URI } from "../config";
type Props = {
children: ReactNode;
@@ -23,11 +23,11 @@ type Props = {
export const AuthHeaderContext = createContext<
| {
authHeader: { key: string; value: string };
setAuthHeader: React.Dispatch<
React.SetStateAction<{ key: string; value: string }>
>;
}
authHeader: { key: string; value: string };
setAuthHeader: React.Dispatch<
React.SetStateAction<{ key: string; value: string }>
>;
}
| undefined
>(undefined);