Add dropdown to choose contact addition type. Closes #216.

This commit is contained in:
Jack Kingsman
2026-04-22 17:42:27 -07:00
parent 091ba06ccf
commit 55f05bf03b
6 changed files with 31 additions and 7 deletions
+1 -1
View File
@@ -172,7 +172,7 @@ describe('NewMessageModal form reset', () => {
await user.click(screen.getByRole('button', { name: 'Create' }));
await waitFor(() => {
expect(onCreateContact).toHaveBeenCalledWith('Bob', 'bb'.repeat(32), false);
expect(onCreateContact).toHaveBeenCalledWith('Bob', 'bb'.repeat(32), false, 1);
});
expect(onClose).toHaveBeenCalled();
});