Fix storybook tests on Field Preview (Settings) (#3761)
This commit is contained in:
@ -8,7 +8,7 @@ export const CurrencyFieldDisplay = () => {
|
||||
return (
|
||||
<CurrencyDisplay
|
||||
amount={
|
||||
fieldValue.amountMicros ? fieldValue.amountMicros / 1000000 : null
|
||||
fieldValue?.amountMicros ? fieldValue.amountMicros / 1000000 : null
|
||||
}
|
||||
/>
|
||||
);
|
||||
|
||||
@ -69,7 +69,7 @@ export const RecordTableRow = ({ recordId, rowIndex }: RecordTableRowProps) => {
|
||||
<RecordTableCellContainer />
|
||||
</RecordTableCellContext.Provider>
|
||||
) : (
|
||||
<td></td>
|
||||
<td key={column.fieldMetadataId}></td>
|
||||
);
|
||||
})}
|
||||
<td></td>
|
||||
|
||||
Reference in New Issue
Block a user