Skip to content

Commit 8cd7ac4

Browse files
authored
break cache for github request (#631)
1 parent fcc450f commit 8cd7ac4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jumble/src/components/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ async function handleAddGmailImporter(deps: CommandContext, filename: string) {
702702
deps.setLoading(true);
703703
try {
704704
const response = await fetch(
705-
`https://raw.githubusercontent.com/commontoolsinc/labs/refs/heads/main/recipes/${filename}`,
705+
`https://raw.githubusercontent.com/commontoolsinc/labs/refs/heads/main/recipes/${filename}?${Date.now()}`,
706706
);
707707
const src = await response.text();
708708

0 commit comments

Comments
 (0)