mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-23 23:19:40 +01:00
web: open settings with importer page instead of importer.notesnook.com
This commit is contained in:
@@ -48,6 +48,7 @@ import { ErrorText } from "../components/error-text";
|
|||||||
import { BuyDialog } from "./buy-dialog";
|
import { BuyDialog } from "./buy-dialog";
|
||||||
import { BaseDialogProps, DialogManager } from "../common/dialog-manager";
|
import { BaseDialogProps, DialogManager } from "../common/dialog-manager";
|
||||||
import { strings } from "@notesnook/intl";
|
import { strings } from "@notesnook/intl";
|
||||||
|
import { SettingsDialog } from "./settings";
|
||||||
|
|
||||||
type Step = {
|
type Step = {
|
||||||
title: string;
|
title: string;
|
||||||
@@ -297,7 +298,9 @@ function Importer({ onClose }: { onClose: () => void }) {
|
|||||||
variant="accent"
|
variant="accent"
|
||||||
sx={{ borderRadius: 50, alignSelf: "center", px: 30 }}
|
sx={{ borderRadius: 50, alignSelf: "center", px: 30 }}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
window.open("https://importer.notesnook.com/", "_blank");
|
SettingsDialog.show({
|
||||||
|
activeSection: "importer"
|
||||||
|
});
|
||||||
onClose();
|
onClose();
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user