]> Untitled Git - lemmy-ui.git/commitdiff
make suggested changes
authorAlec Armbruster <35377827+alectrocute@users.noreply.github.com>
Tue, 20 Jun 2023 14:21:31 +0000 (10:21 -0400)
committerAlec Armbruster <35377827+alectrocute@users.noreply.github.com>
Tue, 20 Jun 2023 14:21:31 +0000 (10:21 -0400)
lemmy-translations
src/shared/components/post/post-form.tsx
src/shared/env.ts
src/shared/i18next.ts
src/shared/services/UserService.ts
src/shared/utils.ts

index 7fc71d0860bbe5c6d620ec27112350ffe5b9229c..c9a07885f35cf334d3cf167cb57587a8177fc3fb 160000 (submodule)
@@ -1 +1 @@
-Subproject commit 7fc71d0860bbe5c6d620ec27112350ffe5b9229c
+Subproject commit c9a07885f35cf334d3cf167cb57587a8177fc3fb
index 02a5906715cf289cf7935b74682fbee0cbc209f1..9742b34583f1b297c866e91bb4a1af418557f892 100644 (file)
@@ -1,3 +1,4 @@
+import { debounce } from "@utils/helpers";
 import autosize from "autosize";
 import { Component, InfernoNode, linkEvent } from "inferno";
 import {
@@ -32,7 +33,6 @@ import {
   validURL,
   webArchiveUrl,
 } from "../../utils";
-import debounce from "../../utils/helpers/debounce";
 import { Icon, Spinner } from "../common/icon";
 import { LanguageSelect } from "../common/language-select";
 import { MarkdownTextArea } from "../common/markdown-textarea";
index 2f3a5cf14420fb6750c8f3fdd1e7c023c8261cf1..287912d1c50fd7fc3b072f630312efe9d7432912 100644 (file)
@@ -1,4 +1,4 @@
-import isBrowser from "./utils/browser/is-browser";
+import { isBrowser } from "@utils/browser";
 
 const testHost = "0.0.0.0:8536";
 
index d0a4e5874feb3a2e197f0b3ede010bd8bbf5970e..ff5f77f11acc3b4b0413859bada5c24921e93112 100644 (file)
@@ -1,3 +1,4 @@
+import { isBrowser } from "@utils/browser";
 import i18next, { i18nTyped, Resource } from "i18next";
 import { UserService } from "./services";
 import { ar } from "./translations/ar";
@@ -31,7 +32,6 @@ import { sv } from "./translations/sv";
 import { vi } from "./translations/vi";
 import { zh } from "./translations/zh";
 import { zh_Hant } from "./translations/zh_Hant";
-import isBrowser from "./utils/browser/is-browser";
 
 export const languages = [
   { resource: ar, code: "ar", name: "العربية" },
index 18d0804a96a1a849a7803dff6a92c9b5e7da8fe6..346d833adcde6955a8874f5423ba6bc2021c86f0 100644 (file)
@@ -1,11 +1,11 @@
 // import Cookies from 'js-cookie';
+import { isBrowser } from "@utils/browser";
 import IsomorphicCookie from "isomorphic-cookie";
 import jwt_decode from "jwt-decode";
 import { LoginResponse, MyUserInfo } from "lemmy-js-client";
 import { isHttps } from "../env";
 import { i18n } from "../i18next";
 import { isAuthPath, toast } from "../utils";
-import isBrowser from "../utils/browser/is-browser";
 
 interface Claims {
   sub: number;
index 35e30a364529b1fbe6d28039288c407574156d39..ad1e8a470aca65d00bbed3e11811361daac9a928 100644 (file)
@@ -1,3 +1,5 @@
+import { isBrowser } from "@utils/browser";
+import { debounce, groupBy } from "@utils/helpers";
 import { Picker } from "emoji-mart";
 import emojiShortName from "emoji-short-name";
 import {
@@ -50,9 +52,6 @@ import {
 } from "./interfaces";
 import { HttpService, UserService } from "./services";
 import { RequestState } from "./services/HttpService";
-import isBrowser from "./utils/browser/is-browser";
-import debounce from "./utils/helpers/debounce";
-import { groupBy } from "./utils/helpers/group-by";
 
 let Tribute: any;
 if (isBrowser()) {