We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c793cfc commit b97fd2bCopy full SHA for b97fd2b
src/lambda/gist/gist.js
@@ -39,6 +39,7 @@ function matchExpectedFiles(files) {
39
async function getGist({ id, version }) {
40
const response = await fetch(
41
[ENDPOINT, id, version].filter(Boolean).join('/'),
42
+ { headers: { authorization } },
43
);
44
45
const { files } = await response.json();
0 commit comments