Skip to content

Commit

Permalink
null
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliu-dev committed Dec 3, 2024
1 parent 9013727 commit 2e79a55
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export default function RemoteRow({ remote }: Props) {
<td>{remote.name}</td>
<td>{remote.url}</td>
<td>
{remote.fetchSpecs.map((fs, i) => (
{remote.fetchSpecs?.map((fs, i) => (
<span key={fs}>
{fs}
{i < remote.fetchSpecs.length - 1 ? ", " : ""}
{i < (remote.fetchSpecs?.length ?? 0) - 1 ? ", " : ""}
</span>
))}
</td>
Expand Down

0 comments on commit 2e79a55

Please sign in to comment.