Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions packages/nextjs/app/contact-book/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export default function AddressBookPage() {

<div className="flex items-center gap-2">
<button
className="bg-grey-100 rounded-lg font-medium text-sm text-gray-700 transition-colors cursor-pointer w-28 h-12"
className="bg-grey-100 rounded-lg font-medium text-sm text-gray-700 transition-colors cursor-pointer h-12 px-3 flex items-center gap-1"
onClick={() =>
modalManager.openModal?.("createGroup", {
accountId,
Expand All @@ -128,10 +128,22 @@ export default function AddressBookPage() {
})
}
>
<Image src="/contact-book/new-group.svg" alt="New group" width={20} height={20} />
New group
</button>
<button
className="bg-main-violet text-white rounded-lg text-sm font-medium transition-colors cursor-pointer w-28 h-12"
className="bg-main-black text-white rounded-lg text-sm font-medium transition-colors cursor-pointer h-12 px-3 flex items-center gap-1"
onClick={() =>
modalManager.openModal?.("createBatchFromContacts", {
accountId,
})
}
>
<Image src="/contact-book/create-batch.svg" alt="Create batch" width={20} height={20} />
Create batch
</button>
<button
className="bg-main-violet text-white rounded-lg text-sm font-medium transition-colors cursor-pointer h-12 px-3 flex items-center gap-1"
onClick={() =>
modalManager.openModal?.("createContact", {
accountId,
Expand All @@ -140,7 +152,7 @@ export default function AddressBookPage() {
})
}
>
New contact
<Image src="/contact-book/new-contact.svg" alt="New contact" width={20} height={20} /> New contact
</button>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/components/Batch/TransactionSummary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const TransactionSummary: React.FC<TransactionSummaryProps> = ({
className="flex items-center justify-center px-5 py-3 rounded-lg w-full disabled:opacity-50 bg-main-pink"
>
<span className="font-semibold text-sm text-center">
{isLoading ? loadingState || "Processing..." : `Submit batch`}
{isLoading ? loadingState || "Processing..." : `Propose batch`}
</span>
</button>
</div>
Expand Down
Loading
Loading