Skip to content

Commit

Permalink
Expand index of property select element
Browse files Browse the repository at this point in the history
  • Loading branch information
jlachor committed Oct 23, 2024
1 parent 7196878 commit 6f929c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/home/searches/BlockSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const BlockSearch: React.FC<BlockSearchProps> = ({
selectedKeys.map(
(key, index) =>
key !== "value" && (
<div key={key}>
<div key={`key ${index}`}>
{index !== 1 && "/"} {key}
</div>
)
Expand All @@ -194,7 +194,7 @@ const BlockSearch: React.FC<BlockSearchProps> = ({
{keys.map(
(key, index) =>
key !== "value" && (
<div key={key}>
<div key={`key ${index}`}>
{index !== 1 && "/"} {key}{" "}
</div>
)
Expand Down

0 comments on commit 6f929c9

Please sign in to comment.