Skip to content

Commit

Permalink
deleted redundant close tags
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaDemchenko committed Jan 17, 2024
1 parent 640d2ab commit 957af8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/camera-stream/CameraStream.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const CameraStream = () => {
<video
className={isVideoVisible ? styles.videoStream : styles.displayNone}
ref={videoRef}
></video>
/>
</div>
</div>
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/infinite-scroll/InfiniteScroll.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const InfiniteScroll = <T,>({
))}
</ul>
{isLoading && <p>Loading...</p>}
<div ref={observerTarget}></div>
<div ref={observerTarget} />
</div>
</>
)
Expand Down

0 comments on commit 957af8b

Please sign in to comment.