this repo has no description
1<script lang="ts">
2 import { _ } from '../../lib/i18n'
3
4 interface Props {
5 error: string | null
6 onStartOver: () => void
7 }
8
9 let { error, onStartOver }: Props = $props()
10</script>
11
12<div class="step-content">
13 <h2>{$_('migration.inbound.error.title')}</h2>
14 <p>{$_('migration.inbound.error.desc')}</p>
15
16 <div class="message error">
17 {error || $_('migration.inbound.error.unknown')}
18 </div>
19
20 <div class="button-row">
21 <button class="ghost" onclick={onStartOver}>{$_('migration.inbound.error.startOver')}</button>
22 </div>
23</div>