]> Untitled Git - lemmy-ui.git/blobdiff - src/shared/utils/browser/index.ts
Attempt to fix inability to logout from some instances (subdomains) (#1809)
[lemmy-ui.git] / src / shared / utils / browser / index.ts
index a7a08a505f4f486c4a2fc85fe23cc329ad1aef98..321a4c9f46b7ee18637f855e349f77c76234f8a8 100644 (file)
@@ -1,5 +1,23 @@
 import canShare from "./can-share";
+import clearAuthCookie from "./clear-auth-cookie";
+import dataBsTheme from "./data-bs-theme";
 import isBrowser from "./is-browser";
+import isDark from "./is-dark";
+import loadCss from "./load-css";
+import restoreScrollPosition from "./restore-scroll-position";
+import saveScrollPosition from "./save-scroll-position";
+import setAuthCookie from "./set-auth-cookie";
 import share from "./share";
 
-export { canShare, isBrowser, share };
+export {
+  canShare,
+  clearAuthCookie,
+  dataBsTheme,
+  isBrowser,
+  isDark,
+  loadCss,
+  restoreScrollPosition,
+  saveScrollPosition,
+  setAuthCookie,
+  share,
+};