Skip to content

Commit

Permalink
blur non-owned records
Browse files Browse the repository at this point in the history
  • Loading branch information
karooolis committed Dec 12, 2024
1 parent fd54693 commit d6fe4d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export function TablesViewer({ table, query }: { table?: TableType; query?: stri
const keyHash = keccak256(encodeAbiParameters([{ type: "bytes32[]" }], [keySchemaValues]));
const crosschainRecord = crosschainRecords.rows.find((record) => record.keyHash === keyHash);

if (crosschainRecord && crosschainRecord.owned) {
if (crosschainRecord && !crosschainRecord.owned) {
return (
<TableRow key={row.id} data-state={row.getIsSelected() && "selected"} className="relative">
{row.getVisibleCells().map((cell) => (
Expand Down

0 comments on commit d6fe4d3

Please sign in to comment.