Skip to content

Commit

Permalink
remove JSON.stringify
Browse files Browse the repository at this point in the history
  • Loading branch information
vashjs committed Jan 31, 2024
1 parent f0ad07c commit 908cc83
Showing 1 changed file with 9 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -265,18 +265,15 @@ export const BulkEditListFilters = ({
);

const renderListSelect = () => (
<>
{JSON.stringify(capabilities)}
<ListSelect
value={recordIdentifier}
disabled={getIsDisabledByPerm(capabilities,
isSelectIdentifiersDisabled,
hasAnyUserWithBulkPerm,
hasAnyInventoryWithInAppView)}
onChange={handleRecordIdentifierChange}
capabilities={capabilities}
/>
</>
<ListSelect
value={recordIdentifier}
disabled={getIsDisabledByPerm(capabilities,
isSelectIdentifiersDisabled,
hasAnyUserWithBulkPerm,
hasAnyInventoryWithInAppView)}
onChange={handleRecordIdentifierChange}
capabilities={capabilities}
/>
);

const renderListFileUploader = () => (
Expand Down

0 comments on commit 908cc83

Please sign in to comment.