{
accessorKey: "name",
header: "Name",
},renderedCellValue instead of cell.getValue(), but on this code snippet highlighting does not work:{
accessorKey: "description",
header: "Description",
maxSize: 200,
minSize: 100,
Cell: ({ renderedCellValue }) => {
return (
<>
{renderedCellValue ? (
<Text>
{renderedCellValue}
</Text>
) : (
<Group position={"center"}>-</Group>
)}
</>
);
},
mantineTableBodyCellProps: {
style: {
whiteSpace: "normal",
wordBreak: "break-word",
},
},
},{
accessorKey: "read_address.address",
header: "Address",
size: 480,
maxSize: 480,
Cell: ({ cell, row }) => {
return (
<OverflowText>
<ButtonCopy
address={cell.getValue<string>()}
syncedPercentage={
processSyncedRatio(row.original.average_synced_ratio) || null
}
></ButtonCopy>
</OverflowText>
);
},
},https://x.com/tan_stack/status/2031128535470104577?s=20
dry-scarlet · 15h ago
https://x.com/powersync_/status/2010721010006552775?s=20
dry-scarlet · 2mo ago
You can now submit your website/app/project to http://TanStack.com 's new showcase and have it seen by the TanStack community! - Global showcase browser - Per-library filters - Category filters Submit here: https://tanstack.com/showcase/submit View all here: https://tanstack.com/showcase
dry-scarlet · 3mo ago