Browse Source

changes

pull/1/head
PhilReact 10 months ago
parent
commit
5888fd7fff
  1. 2
      index.html
  2. BIN
      public/favicon.ico
  3. 4
      src/components/common/ConsentModal.tsx
  4. 2
      src/constants/index.ts
  5. 2
      src/pages/Home/VideoList.tsx

2
index.html

@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Q-Tube</title>
<title>Q-Share</title>
</head>
<body>
<div id="root"></div>

BIN
public/favicon.ico

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 15 KiB

4
src/components/common/ConsentModal.tsx

@ -8,7 +8,7 @@ import DialogTitle from "@mui/material/DialogTitle";
import localForage from "localforage";
import { useTheme } from "@mui/material";
const generalLocal = localForage.createInstance({
name: "q-tube-general",
name: "q-share-general",
});
export default function ConsentModal() {
@ -44,7 +44,7 @@ export default function ConsentModal() {
<DialogTitle id="alert-dialog-title">Welcome</DialogTitle>
<DialogContent>
<DialogContentText id="alert-dialog-description">
Q-Tube is currently in its first version and as such there could be
Q-Share is currently in its first version and as such there could be
some bugs. The Qortal community, along with its development team and
the creators of this application, cannot be held accountable for any
content published or displayed. Also, they are not responsible for

2
src/constants/index.ts

@ -3,7 +3,7 @@ import gamingIcon from '../assets/icons/gaming.webp'
import mediaIcon from '../assets/icons/media.webp'
const useTestIdentifiers = true;
const useTestIdentifiers = false;
export const QTUBE_VIDEO_BASE = useTestIdentifiers
? "MYTEST_share_vid_"

2
src/pages/Home/VideoList.tsx

@ -316,7 +316,7 @@ export const VideoList = ({ mode }: VideoListProps) => {
setSelectedSubCategoryVideos3(selectedOption || null);
};
const blockUserFunc = async (user: string) => {
if (user === "Q-Tube") return;
if (user === "Q-Share") return;
try {
const response = await qortalRequest({

Loading…
Cancel
Save