summaryrefslogtreecommitdiff
path: root/web/source/settings/views/user/export-import/index.tsx
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2024-08-02 13:41:46 +0200
committerLibravatar GitHub <noreply@github.com>2024-08-02 12:41:46 +0100
commit7b5917d6ae48f83c92f92d7277960cfa6ae8ec56 (patch)
tree93ee6999195060714f41f9b9476d4d76ad50520c /web/source/settings/views/user/export-import/index.tsx
parent[chore] Take account of rotation data when calculating full size image dimens... (diff)
downloadgotosocial-7b5917d6ae48f83c92f92d7277960cfa6ae8ec56.tar.xz
[feature] Allow import of following and blocks via CSV (#3150)
* [feature] Import follows + blocks via settings panel * test import follows
Diffstat (limited to 'web/source/settings/views/user/export-import/index.tsx')
-rw-r--r--web/source/settings/views/user/export-import/index.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/web/source/settings/views/user/export-import/index.tsx b/web/source/settings/views/user/export-import/index.tsx
index 2e3533318..b73779bac 100644
--- a/web/source/settings/views/user/export-import/index.tsx
+++ b/web/source/settings/views/user/export-import/index.tsx
@@ -22,6 +22,7 @@ import Export from "./export";
import Loading from "../../../components/loading";
import { Error } from "../../../components/error";
import { useExportStatsQuery } from "../../../lib/query/user/export-import";
+import Import from "./import";
export default function ExportImport() {
const {
@@ -52,6 +53,7 @@ export default function ExportImport() {
your GoToSocial account. All exports and imports use Mastodon-compatible CSV files.
</p>
<Export exportStats={exportStats} />
+ <Import />
</>
);
}