File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,6 @@ envFile="$SCRIPT_DIR/../.env.${deployment}"
22
22
[ -f " $envFile .public" ] && . $envFile .public
23
23
[ -f " $envFile " ] && . $envFile
24
24
25
- $SCRIPT_DIR /generateBuildInfo.sh
25
+ " $SCRIPT_DIR /generateBuildInfo.sh"
26
26
27
27
eval " $commands "
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const useUserSettings = () => {
13
13
queryFn : async ( ) => {
14
14
try {
15
15
if ( ! authToken ) return ;
16
- const res = await fetch ( ` /.netlify/functions/fetch-settings` , {
16
+ const res = await fetch ( " /.netlify/functions/fetch-settings" , {
17
17
method : "POST" ,
18
18
headers : {
19
19
"x-auth-token" : authToken ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ type AuthoriseUserData = {
9
9
10
10
export function authoriseUser ( authData : AuthoriseUserData ) : Promise < Response > {
11
11
return toast . promise < Response , Error > (
12
- fetch ( ` /.netlify/functions/authUser` , {
12
+ fetch ( ' /.netlify/functions/authUser' , {
13
13
method : "POST" ,
14
14
headers : {
15
15
"Content-Type" : "application/json" ,
You can’t perform that action at this time.
0 commit comments