Adds proper error return to stuff involving upload links #39

Merged
countablecloud merged 2 commits from mk/add-error-return-to-upload-links into master 2024-08-16 19:02:33 -06:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 1f5c5774e1 - Show all commits

View File

@ -1654,6 +1654,7 @@ export type GetDeployedConfigQuery = {
devMode: boolean;
environment: string;
firebase: boolean;
minimumAllowedAppVersion: string;
};
};
@ -2388,6 +2389,7 @@ export const GetDeployedConfigDocument = gql`
devMode
environment
firebase
minimumAllowedAppVersion
}
}
`;

View File

@ -4,5 +4,6 @@ query getDeployedConfig {
devMode
environment
firebase
minimumAllowedAppVersion
}
}