Skip to content

Commit

Permalink
feat: create post (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjeongmin committed Apr 9, 2024
1 parent 327eaea commit 4fc2c3d
Show file tree
Hide file tree
Showing 12 changed files with 295 additions and 86 deletions.
2 changes: 1 addition & 1 deletion src/app/pages/main-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import styled from 'styled-components';
import { CircularButton } from '@/components';
import { UserCard } from '@/components/main-page';
import { useAuthActions, useAuthValue, useUserData } from '@/features/auth';
import { useRecommendationMate } from '@/features/match';
import { useRecommendationMate } from '@/features/recommendation';

const styles = {
container: styled.div`
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/shared-post-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const styles = {
background: var(--background, #f7f6f9);
position: relative;
width: 100dvw;
width: 100%;
min-height: 100%;
height: fit-content;
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/shared-posts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
} from '@/components/shared-posts';
import { type SharedPostsType } from '@/entities/shared-posts-filter';
import { useAuthActions, useAuthValue, useUserData } from '@/features/auth';
import { useRecommendationMate } from '@/features/match';
import { useRecommendationMate } from '@/features/recommendation';
import { usePaging, useSharedPosts } from '@/features/shared';
import { type GetSharedPostsDTO } from '@/features/shared/shared.dto';

Expand Down
Loading

0 comments on commit 4fc2c3d

Please sign in to comment.