Skip to content

Commit 5a5030e

Browse files
committed
fix(templates): switch template list endpoint to next branch
The templates are currently pulled from the next branch but the list was from master, causing some templates to crash
1 parent 9745010 commit 5a5030e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/templating/data.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import got from 'got';
44
const log = debug('twilio-run:new:template-data');
55

66
const TEMPLATES_URL =
7-
'https://raw.githubusercontent.com/twilio-labs/function-templates/master/templates.json';
7+
'https://raw.githubusercontent.com/twilio-labs/function-templates/next/templates.json';
88
const CONTENT_BASE_URL =
99
'https://api.github.com/repos/twilio-labs/function-templates/contents';
1010

0 commit comments

Comments
 (0)