diff --git a/frontend/src/components/home/ImportHint.vue b/frontend/src/components/home/ImportHint.vue
new file mode 100644
index 000000000..af54067a0
--- /dev/null
+++ b/frontend/src/components/home/ImportHint.vue
@@ -0,0 +1,47 @@
+
+
+
+
+
+ {{ $t('home.project.importText') }}
+
+
+ {{ $t('home.project.import') }}
+
+
+
\ No newline at end of file
diff --git a/frontend/src/views/Home.vue b/frontend/src/views/Home.vue
index 87fc26c82..2437a30f2 100644
--- a/frontend/src/views/Home.vue
+++ b/frontend/src/views/Home.vue
@@ -23,17 +23,7 @@
class="is-max-width-desktop"
@taskAdded="updateTaskKey"
/>
-
-
- {{ $t('home.project.importText') }}
-
-
- {{ $t('home.project.import') }}
-
-
+
{
// If we don't check this, it tries to load the project background right after logging out
@@ -94,9 +79,6 @@ const projectHistory = computed(() => {
const tasksLoaded = ref(false)
-const migratorsEnabled = computed(() => configStore.availableMigrators?.length > 0)
-const hasTasks = computed(() => baseStore.hasTasks)
-const loading = computed(() => taskStore.isLoading)
const deletionScheduledAt = computed(() => parseDateOrNull(authStore.info?.deletionScheduledAt))
// This is to reload the tasks list after adding a new task through the global task add.