Skip to content

Commit b56a297

Browse files
authored
Merge pull request #44 from NavAbility/main
Pulling in linting changes.
2 parents 90b3b0f + a215221 commit b56a297

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/navability/graphql/Blob.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//TODO: Move all the file functionality to here as blob functionality.
1+
// TODO: Move all the file functionality to here as blob functionality.
22

33
export const QUERY_BLOBS = `
44
query Files {

src/navability/services/Blob.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ export async function queryFiles(navAbilityClient: NavAbilityClient): Promise<Fi
2626
export async function getDownloadUrl(navAbilityClient: NavAbilityClient, fileId: string) {
2727
const result = await navAbilityClient.mutate({
2828
mutation: gql(MUTATION_CREATE_DOWNLOAD),
29-
variables: { fileId: fileId },
29+
variables: { fileId },
3030
});
31-
console.log(result);
3231
return result.data.url;
3332
}
3433

0 commit comments

Comments
 (0)