fix: Fix imports

This commit is contained in:
SleeplessOne1917 2023-10-04 19:49:13 -04:00
parent 108ad0a18a
commit da62af71d2
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ import { I18NextService } from "../../services";
import { Icon, Spinner } from "../common/icon"; import { Icon, Spinner } from "../common/icon";
import { PersonListing } from "../person/person-listing"; import { PersonListing } from "../person/person-listing";
import { CommentNode } from "./comment-node"; import { CommentNode } from "./comment-node";
import { EMPTY_REQUEST } from "shared/services/HttpService"; import { EMPTY_REQUEST } from "../../services/HttpService";
interface CommentReportProps { interface CommentReportProps {
report: CommentReportView; report: CommentReportView;

View file

@ -1,5 +1,5 @@
import { GetPostsResponse } from "lemmy-js-client"; import { GetPostsResponse } from "lemmy-js-client";
import { EMPTY_REQUEST, RequestState } from "./HttpService.js"; import { EMPTY_REQUEST, RequestState } from "./HttpService";
/** /**
* Service to cache home post listings and restore home state when user uses the browser back buttons. * Service to cache home post listings and restore home state when user uses the browser back buttons.