Skip to content

Commit 972bd1f

Browse files
committed
Fix the URL for Remap top page.
1 parent 771cd27 commit 972bd1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

functions/src/host/generate-catalog-page-command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default class GenerateCatalogPageCommand {
2323
}
2424

2525
private static async fetchRemapIndexHtml(): Promise<string> {
26-
const response = await axios.default.get('http://localhost:3000/');
26+
const response = await axios.default.get('https://remap-keys.app/');
2727
if (response.status === 200) {
2828
return response.data;
2929
} else {

0 commit comments

Comments
 (0)