style: format ts file with prettier
This commit is contained in:
Vendored
+2
-2
@@ -1,8 +1,8 @@
|
||||
import * as localforage from "localforage";
|
||||
import { extendPrototype } from 'localforage-setitems';
|
||||
import { extendPrototype } from "localforage-setitems";
|
||||
|
||||
import { CACHE_VERSION, KEY_UID } from "../config";
|
||||
import useRehydrate from "./useRehydrate";
|
||||
import { KEY_UID, CACHE_VERSION } from "../config";
|
||||
|
||||
extendPrototype(localforage);
|
||||
const tables = [
|
||||
|
||||
Vendored
+7
-6
@@ -1,15 +1,16 @@
|
||||
import { useState } from "react";
|
||||
import { useDispatch } from "react-redux";
|
||||
import { fillReactionMessage } from "../slices/message.reaction";
|
||||
import { fillServer } from "../slices/server";
|
||||
|
||||
import { fillChannels } from "../slices/channels";
|
||||
import { fillFootprint } from "../slices/footprint";
|
||||
import { fillMessage } from "../slices/message";
|
||||
import { fillChannelMsg } from "../slices/message.channel";
|
||||
import { fillUserMsg } from "../slices/message.user";
|
||||
import { fillChannels } from "../slices/channels";
|
||||
import { fillUsers } from "../slices/users";
|
||||
import { fillFootprint } from "../slices/footprint";
|
||||
import { fillFileMessage } from "../slices/message.file";
|
||||
import { fillReactionMessage } from "../slices/message.reaction";
|
||||
import { fillUserMsg } from "../slices/message.user";
|
||||
import { fillServer } from "../slices/server";
|
||||
import { fillUI } from "../slices/ui";
|
||||
import { fillUsers } from "../slices/users";
|
||||
|
||||
const useRehydrate = () => {
|
||||
const [iterated, setIterated] = useState(false);
|
||||
|
||||
Reference in New Issue
Block a user