From 196c7a42ad38d02c6cc9bc2abee1e18b91d8d71d Mon Sep 17 00:00:00 2001 From: Jakob Pinterits Date: Sat, 22 Feb 2025 12:23:36 +0100 Subject: [PATCH] fix incorrect URL to rio website --- rio/snippets/project_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rio/snippets/project_template.py b/rio/snippets/project_template.py index 6ba14d42..e56fd668 100644 --- a/rio/snippets/project_template.py +++ b/rio/snippets/project_template.py @@ -140,7 +140,7 @@ class ProjectTemplate: # All examples are hosted, provided they don't require any changes by # the user. if self.ready_to_run: - return rio.URL(f"https://rio.io/live-demo/{self.slug}") + return rio.URL(f"https://rio.dev/live-demo/{self.slug}") return None