fix(contacts): pass usize to DataTable.total_items #19
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/contacts-total-items-usize"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
DataTable.total_items is typed usize but CompanyListPage cast remote_companies.len() to u32, breaking the wasm release build (E0308 mismatched types). slice::len() returns usize so the cast is also unneeded - drop it.
Signed-off-by: nrupard natrsmith11@gmail.com