Skip to content

Commit

Permalink
web: fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Oct 12, 2024
1 parent 5e0b8fc commit cba5dbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/src/ui/Lightbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
import React, { Component, RefObject, createContext, createRef, useCallback, useState } from "react"
import DownloadIcon from "../icons/download.svg?react"
import CloseIcon from "../icons/close.svg?react"
import DownloadIcon from "../icons/download.svg?react"
import RotateLeftIcon from "../icons/rotate-left.svg?react"
import RotateRightIcon from "../icons/rotate-right.svg?react"
import ZoomInIcon from "../icons/zoom-in.svg?react"
Expand Down
2 changes: 1 addition & 1 deletion web/src/ui/roomlist/RoomList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import "./RoomList.css"

interface RoomListProps {
setActiveRoom: (room_id: RoomID) => void
activeRoomID: RoomID
activeRoomID: RoomID | null
}

const RoomList = ({ setActiveRoom, activeRoomID }: RoomListProps) => {
Expand Down

0 comments on commit cba5dbd

Please sign in to comment.