Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan-Y-Ko committed Oct 1, 2024
1 parent 23f220a commit eaa93a9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { handleAsync } from "@/utils/handleAsync";
import { type AsyncActionResponse } from "@/utils/handleAsync";
import { CacheTag } from "@/utils/cacheTag";
import { type AddIdeationResponseDto } from "@/modules/ideation/application/dtos/response.dto";
import { type AddIdeationUsecaseDto } from "@/modules/ideation/application/dtos/addIdeationUsecaseDto";
import { type AddIdeationRequestDto } from "@/modules/ideation/application/dtos/request.dto";

interface IdeationProps {
teamId: number;
Expand Down Expand Up @@ -64,7 +64,7 @@ export async function addIdeation({
title,
description,
vision,
}: AddIdeationUsecaseDto): Promise<
}: AddIdeationRequestDto): Promise<
AsyncActionResponse<AddIdeationResponseDto>
> {
const token = getAccessToken();
Expand Down

0 comments on commit eaa93a9

Please sign in to comment.