Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
andymac4182 committed Apr 28, 2023
1 parent 65c1a42 commit 91ff4e9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/obsidian/src/CompletedModal.tsx
Expand Up @@ -38,7 +38,11 @@ const CompletedView: React.FC<UploadResultsProps> = ({ uploadResults }) => {
return filesUploadResult
.filter((result) => result[`${type}Result`] === "updated")
.map((result, index) => (
<li key={index}><a href={result.adfFile.pageUrl}>{result.adfFile.absoluteFilePath}</a></li>
<li key={index}>
<a href={result.adfFile.pageUrl}>
{result.adfFile.absoluteFilePath}
</a>
</li>
));
};

Expand Down

0 comments on commit 91ff4e9

Please sign in to comment.