Update copy

pull/3374/head
Andrew Watkins 2018-05-07 10:11:00 -07:00 committed by GitHub
parent 63f0857e81
commit 8aaffaca9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ export const getTags = async () => {
const {data} = await Promise.resolve(response)
return data.tags
} catch (error) {
console.error('Could not get tagKeys', error)
console.error('Could not get tags', error)
throw error
}
}
@ -64,7 +64,7 @@ export const getTagValues = async () => {
const {data} = await Promise.resolve(response)
return data.values
} catch (error) {
console.error('Could not get tagKeys', error)
console.error('Could not get tag values', error)
throw error
}
}