Skip to content

Commit 63d93bb

Browse files
committed
fix: hide import for now
1 parent 58bc304 commit 63d93bb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

apps/resplice/src/common/components/NavActions.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@
6161
class="bg-white rounded-xl p-8 flex flex-col items-start space-y-4"
6262
style="will-change: transform; transform: translateY({$translateY}px) scale({$scale})"
6363
>
64-
<button
64+
<!-- <button
6565
class="flex items-center space-x-2 focus:ring-4 focus:ring-green-200 focus:outline-none rounded-lg w-full"
6666
on:click={() => push('/invite/contacts')}
6767
>
6868
<div class="p-2 rounded-lg bg-brand-primary text-brand-primary bg-opacity-20">
6969
<PeopleIcon width={24} height={24} />
7070
</div>
7171
<p>Import Contacts</p>
72-
</button>
72+
</button> -->
7373
<!-- <button
7474
class="flex items-center space-x-2 focus:ring-4 focus:ring-green-200 focus:outline-none rounded-lg w-full"
7575
on:click={() => push('/invite/create/handle')}

apps/resplice/src/modules/connection/pages/ConnectionListPage.svelte

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ConnectionEmptyIcon,
77
CameraIcon,
88
QRCodeIcon,
9-
AddIcon
9+
PersonAddIcon
1010
} from '@resplice/components'
1111
import connectionStore from '$modules/connection/connection.store'
1212
import inviteStores from '$modules/invite/invite.store'
@@ -61,10 +61,10 @@
6161
<Button
6262
color="brand-light"
6363
class="flex items-center justify-center w-56"
64-
on:click={() => push('/invite/bulk')}
64+
on:click={() => push('/invite/create/phone')}
6565
>
66-
<AddIcon width={24} height={24} />
67-
<span class="ml-2">Import Contacts</span>
66+
<PersonAddIcon width={24} height={24} />
67+
<span class="ml-2">Invite with phone</span>
6868
</Button>
6969
</div>
7070

0 commit comments

Comments
 (0)