1 parent 3dbd2dd commit b6e2d73Copy full SHA for b6e2d73
1 file changed
src/components/BottomControls/BottomControls.tsx
@@ -35,12 +35,12 @@ const shareSite = async () => {
35
await navigator.share({
36
title: "MUI Theme Builder",
37
text: "Modern MUI theme builder",
38
- url: "https://google.com",
+ url: "https://petertyliu.github.io/mui-theme-builder",
39
});
40
} catch (err: any) {
41
if (err.name === "AbortError") return;
42
try {
43
- await navigator.clipboard.writeText("https://google.com");
+ await navigator.clipboard.writeText("https://petertyliu.github.io/mui-theme-builder");
44
toast.success("Site URL copied to clipboard");
45
} catch (error) {
46
toast.error("Failed to share URL");
0 commit comments