Fix Quoter Link
Some checks failed
Release / Build Equicord (push) Has been cancelled
Test / Test (push) Has been cancelled

This commit is contained in:
thororen1234 2025-04-07 09:42:56 -04:00
parent 2893466ba9
commit 1d995a393a
No known key found for this signature in database

View file

@ -141,7 +141,7 @@ async function createQuoteImage(avatarUrl: string, quoteOld: string, grayScale:
ctx.fillRect(0, 0, canvas.width, canvas.height);
const avatarBlob = await fetchImageAsBlob(avatarUrl);
const fadeBlob = await fetchImageAsBlob("https://cdn.nest.rip/uploads/4ec258ab-9446-497a-a9ef-0c7c70661ca1.png");
const fadeBlob = await fetchImageAsBlob("https://github.com/Equicord/Equibored/raw/main/misc/quoter.png");
const avatar = new Image();
const fade = new Image();
@ -199,7 +199,6 @@ async function setIsUserCustomCapable() {
isUserCustomCapable = allowList.includes(UserStore.getCurrentUser().id);
}
function QuoteModal(props: ModalProps) {
setIsUserCustomCapable();
const [gray, setGray] = useState(true);