diff --git a/server/.env.example b/server/.env.example index 660da16c9e..39303e2761 100644 --- a/server/.env.example +++ b/server/.env.example @@ -76,5 +76,5 @@ REEARTH_SES_NAME= #REEARTH_GCS_PUBLICATIONCACHECONTROL= # Extension plugin url as csv -# each path should contais `reearth.yml` file +# each path should contain `reearth.yml` file REEARTH_EXT_PLUGIN=http://fileserve.local:8090/pluging-01,http://fileserve.local:8090/pluging-02 diff --git a/web/src/beta/components/TabButton/index.tsx b/web/src/beta/components/TabButton/index.tsx index 135f8a3ce8..6684de430f 100644 --- a/web/src/beta/components/TabButton/index.tsx +++ b/web/src/beta/components/TabButton/index.tsx @@ -1,9 +1,9 @@ import type { FC } from "react"; +import Text from "@reearth/beta/components/Text"; import { styled } from "@reearth/services/theme"; import Icon, { Icons } from "../Icon"; -import Text from "../Text"; export type Props = { label: string; @@ -14,7 +14,7 @@ export type Props = { const TabButton: FC = ({ label, icon, onClick, selected }) => { return ( -