Skip to content

Commit

Permalink
Fixed imports, linter
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkelM committed Jul 3, 2024
1 parent f7a07da commit 0f46660
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { isFirefox, firebaseConfig } from "./config.js";
import { userHasActiveSubscriptionRole } from "./stripe.js";
import { getApp, getApps, initializeApp } from "firebase/app";
import { getDatabase, ref, child, update, get, remove } from "firebase/database";
import { getFirestore, query, collection, getDocs, orderBy, limit, where } from "firebase/firestore";
import { getFirestore, query, collection, doc, setDoc, getDocs, orderBy, limit, where } from "firebase/firestore";
import { getAuth } from "firebase/auth";
import { countryToCurrency } from "country-to-currency";
// We need to import utils.js to get the console re-routing function
Expand Down
2 changes: 1 addition & 1 deletion src/html/breakingNews.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function getDomElements() {
// FOOTER
// View changelog button
viewChangelogButton: document.getElementById("viewChangelogButton"),
}
};
}

// Set default values from configSync == user preferences
Expand Down

0 comments on commit 0f46660

Please sign in to comment.