Skip to content

Commit

Permalink
Use react icon for locking
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesUoM committed Oct 4, 2023
1 parent 92edc5f commit 9a1d8ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/Lock.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useEffect } from "react";
import { faLock } from "@fortawesome/free-solid-svg-icons";
import { LuLock } from "react-icons/lu";

import { useDispatch, useSelector } from "react-redux";
import { settings } from "../config";
Expand Down Expand Up @@ -33,7 +33,7 @@ const Lock: React.FC = () => {
dispatch(setError({
error: true,
errorDetails: error,
errorIcon: faLock,
errorIcon: LuLock,
errorTitle: 'Video editing locked',
errorMessage: 'This video is currently being edited by another user'
}))
Expand Down

0 comments on commit 9a1d8ce

Please sign in to comment.