From 3e46cc107414044b952d1a21e3a2b10c889a1633 Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Fri, 27 Oct 2023 13:30:53 +0200 Subject: [PATCH] featured URL tweak --- frontend/components/welcome/FeaturedCard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/welcome/FeaturedCard.js b/frontend/components/welcome/FeaturedCard.js index 98424a5626..b0d05c9192 100644 --- a/frontend/components/welcome/FeaturedCard.js +++ b/frontend/components/welcome/FeaturedCard.js @@ -32,7 +32,7 @@ export const FeaturedCard = ({ entry, source_url, direct_html_links }) => { // `direct_html_links` means that we will navigate you directly to the exported HTML file. Otherwise, we use our local editor, with the exported state as parameters. This lets users run the featured notebooks locally. const href = direct_html_links ? u(entry.html_path) - : with_query_params(`editor.html`, { + : with_query_params(`edit`, { statefile: u(entry.statefile_path), notebookfile: u(entry.notebookfile_path), notebookfile_integrity: `sha256-${base64url_to_base64(entry.hash)}`,