Skip to content

Commit

Permalink
fix(backoffice-v2): fixed merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Omri-Levy committed Feb 18, 2024
1 parent f867dc8 commit 6b33427
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,10 @@ export const columns = [
}),
columnHelper.accessor('id', {
cell: info => {
const transactionId = info.getValue();
// eslint-disable-next-line react-hooks/rules-of-hooks -- ESLint doesn't like `cell` not being `Cell`.
const { ref, styles } = useEllipsesWithTitle<HTMLAnchorElement>();
const value = info.getValue();
const transactionId = info.getValue();

return <TextWithNAFallback className="text-sm">{transactionId}</TextWithNAFallback>;
return (
<div className={`w-[11.8ch]`}>
<TextWithNAFallback
Expand All @@ -44,7 +42,7 @@ export const columns = [
style={styles}
ref={ref}
>
{value}
{transactionId}
</TextWithNAFallback>
</div>
);
Expand Down

0 comments on commit 6b33427

Please sign in to comment.