From 5b3c461d7fd5418f27606cc04b08aa52df010687 Mon Sep 17 00:00:00 2001 From: crupest Date: Fri, 29 Jan 2021 23:29:52 +0800 Subject: Front end migrate to npm because of buggy pnp in yarn 2. --- FrontEnd/src/app/views/search/index.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'FrontEnd/src') diff --git a/FrontEnd/src/app/views/search/index.tsx b/FrontEnd/src/app/views/search/index.tsx index 3cd3da58..7d11d899 100644 --- a/FrontEnd/src/app/views/search/index.tsx +++ b/FrontEnd/src/app/views/search/index.tsx @@ -1,14 +1,15 @@ -import { TimelineInfo } from "@/services/timeline"; import React from "react"; import { Container, Row } from "react-bootstrap"; import { useHistory, useLocation } from "react-router"; import { Link } from "react-router-dom"; +import { HttpNetworkError } from "@/http/common"; import { getHttpSearchClient } from "@/http/search"; -import SearchInput from "../common/SearchInput"; -import { HttpNetworkError } from "@/http/common"; +import { TimelineInfo } from "@/services/timeline"; import { useAvatar } from "@/services/user"; + +import SearchInput from "../common/SearchInput"; import BlobImage from "../common/BlobImage"; const TimelineSearchResultItemView: React.FC<{ timeline: TimelineInfo }> = ({ -- cgit v1.2.3