web/safety-warning: remove misplaced comparison
Some checks are pending
Run tests / check lockfile correctness (push) Waiting to run
Run tests / web sanity check (push) Waiting to run
Run tests / api sanity check (push) Waiting to run
Run tests / test service functionality (push) Waiting to run
Run tests / test service: ${{ matrix.service }} (push) Blocked by required conditions

This commit is contained in:
wukko 2024-08-30 17:25:31 +06:00
parent b878d5f4f9
commit ebb5deb43c
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -62,7 +62,7 @@ export const apiOverrideWarning = async () => {
}
export const customInstanceWarning = async () => {
if (env.DEFAULT_API && !get(settings).processing.seenCustomWarning) {
if (!get(settings).processing.seenCustomWarning) {
let _actions: {
resolve: () => void;
reject: () => void;