Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚨 Fix(#317): ν…œν”Œλ¦Ώ 및 λ‚΄ μ‹ μ²­μ„œ νŽ˜μ΄μ§€ QA #318

Merged
merged 2 commits into from
Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/app/(user-menu)/mypage/application/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import deleteApplication from "@/services/application/deleteApplication";
import Icon from "@/components/_common/Icon";
import DeleteModal from "@/components/_common/Modal/DeleteModal";
import useApplicationListQuery from "@/hooks/query/useApplicationListQuery";
import formattedCreatedAt from "@/utils/formattedCreatedAt";

const MyApplicationPage = () => {
const [isModalOpen, setIsModalOpen] = useState(false);
Expand Down Expand Up @@ -94,7 +95,8 @@ const MyApplicationPage = () => {
</div>
<div className="group flex">
<div className="transform text-10 font-bold text-st-gray-100 transition group-hover:-translate-x-[15px] lg:text-15 lg:group-hover:-translate-x-[30px]">
제좜일 {application.createdAt.slice(0, 10)}
제좜일{" "}
{formattedCreatedAt(application.createdAt, "yyyy-MM-dd")}
</div>
<div
onClick={(event) => {
Expand Down
3 changes: 2 additions & 1 deletion src/app/(user-menu)/mypage/template/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import getTemplates from "@/services/template/getTemplates";
import Button, { buttonSize } from "@/components/_common/Button";
import Icon from "@/components/_common/Icon";
import DeleteModal from "@/components/_common/Modal/DeleteModal";
import formattedCreatedAt from "@/utils/formattedCreatedAt";
import { TemplatesKey } from "@/constants/queryKeys";

const MyTemplatePage = () => {
Expand Down Expand Up @@ -64,7 +65,7 @@ const MyTemplatePage = () => {
</div>
<div className="group flex">
<div className="transform text-10 font-bold text-st-gray-100 transition group-hover:-translate-x-[15px] lg:text-15 lg:group-hover:-translate-x-[30px]">
생성일 {template.createdAt.slice(0, 10)}
생성일 {formattedCreatedAt(template.createdAt, "yyyy-MM-dd")}
</div>
<div
onClick={(event) => {
Expand Down
Loading