mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-29 07:41:13 +00:00
fix: Fix imports
This commit is contained in:
parent
108ad0a18a
commit
da62af71d2
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ import { I18NextService } from "../../services";
|
|||
import { Icon, Spinner } from "../common/icon";
|
||||
import { PersonListing } from "../person/person-listing";
|
||||
import { CommentNode } from "./comment-node";
|
||||
import { EMPTY_REQUEST } from "shared/services/HttpService";
|
||||
import { EMPTY_REQUEST } from "../../services/HttpService";
|
||||
|
||||
interface CommentReportProps {
|
||||
report: CommentReportView;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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.
|
||||
|
|
Loading…
Reference in a new issue