Skip to content

Commit

Permalink
Default table PK format length to 9 (#224)
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
  • Loading branch information
nathanleclaire committed Jul 13, 2022
1 parent f75553e commit 43f3509
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/renderer/components/ProgramChange.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ export function ProgramChange(props: {
</span>
</td>
<td>
<InlinePK className="inline-flex items-center mr-2" pk={pubKey} />
<InlinePK
className="inline-flex items-center mr-2"
pk={pubKey}
formatLength={9}
/>
{accountMeta?.privatekey ? <IconMdiKey className="inline-block" /> : ''}
</td>
<td>
Expand Down

0 comments on commit 43f3509

Please sign in to comment.