Skip to content

Commit

Permalink
minor error
Browse files Browse the repository at this point in the history
  • Loading branch information
shubho0908 committed Feb 23, 2024
1 parent a083780 commit 806aa90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/Components/Studio/Basic.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function Basic() {
const [channelName, setChannelName] = useState();
const [channelDescription, setChannelDescription] = useState();
const [channelID, setChannelID] = useState("");
const channelUrl = "http://localhost:5173/channel";
const channelUrl = "https://shubho-youtube-mern.netlify.app/channel";
const channelIDInputRef = useRef(null);
const [Basicchanges, setBasicChanges] = useState(false);
const [Linkchanges, setLinkChanges] = useState(false);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/Components/Studio/Content.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function Content() {
const [isDeleteClicked, setIsDeleteClicked] = useState(false);
const [DeleteVideoData, setDeleteVideoData] = useState();
const [boxclicked, setBoxClicked] = useState(false);
const videoUrl = "http://localhost:5173/video";
const videoUrl = "https://shubho-youtube-mern.netlify.app/video";
const [loading, setLoading] = useState(true);
const [menu, setmenu] = useState(() => {
const menu = localStorage.getItem("studioMenuClicked");
Expand Down

0 comments on commit 806aa90

Please sign in to comment.