Skip to content

Commit

Permalink
fix(apps/pano): fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cansirin committed Aug 12, 2023
1 parent 018023f commit 8370075
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/kampus/app/pano/PanoFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { graphql, useFragment, usePaginationFragment } from "react-relay";
import { Button } from "@kampus/ui-next";

import { PostItem } from "~/app/pano/features/post-list/PostItem";
import { PanoFeed_viewer$key } from "./__generated__/PanoFeed_viewer.graphql";
import { type PanoFeed_viewer$key } from "./__generated__/PanoFeed_viewer.graphql";
import { type PanoFeedFragment$key } from "./__generated__/PanoFeedFragment.graphql";

const fragment = graphql`
Expand Down
4 changes: 2 additions & 2 deletions apps/kampus/app/pano/features/post-list/MoreOptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import {
useToast,
} from "@kampus/ui-next";

import { MoreOptions_post$key } from "./__generated__/MoreOptions_post.graphql";
import { MoreOptions_viewer$key } from "./__generated__/MoreOptions_viewer.graphql";
import { type MoreOptions_post$key } from "./__generated__/MoreOptions_post.graphql";
import { type MoreOptions_viewer$key } from "./__generated__/MoreOptions_viewer.graphql";

interface Props {
post: MoreOptions_post$key;
Expand Down

0 comments on commit 8370075

Please sign in to comment.