mirror of
https://github.com/meshtastic/web.git
synced 2026-05-19 03:35:06 -04:00
Fix correct index for node switch
This commit is contained in:
@@ -41,7 +41,7 @@ export const SearchResult = ({ group }: SearchResultProps): JSX.Element => {
|
||||
</Combobox.Option>
|
||||
{command.subItems && (
|
||||
<div className=" ml-9 border-l">
|
||||
{command.subItems?.map((item) => (
|
||||
{command.subItems?.map((item, index) => (
|
||||
<Combobox.Option
|
||||
key={index}
|
||||
value={item}
|
||||
|
||||
Reference in New Issue
Block a user