From b52d30c55a8ef8c190716bcb635ebaea2267715d Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 31 Oct 2025 11:05:40 +0200 Subject: [PATCH] chore(dialog/export): strange order with OPML --- apps/client/src/widgets/dialogs/export.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/dialogs/export.tsx b/apps/client/src/widgets/dialogs/export.tsx index 068a5cbd2..b694d9abe 100644 --- a/apps/client/src/widgets/dialogs/export.tsx +++ b/apps/client/src/widgets/dialogs/export.tsx @@ -79,8 +79,8 @@ export default function ExportDialog() { values={[ { value: "html", label: t("export.format_html_zip") }, { value: "markdown", label: t("export.format_markdown") }, - { value: "opml", label: t("export.format_opml") }, - { value: "share", label: t("export.share-format") } + { value: "share", label: t("export.share-format") }, + { value: "opml", label: t("export.format_opml") } ]} />