Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ipapandinas committed Jan 11, 2025
1 parent 4d57fe0 commit 05a1df7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Repository, RepositoryDto } from "./repository";

export type TaskDto = {
id: number;
task_id: number;
issue_id: number;
labels: string[] | null;
open: boolean;
assignee_id: string | null;
Expand All @@ -13,8 +13,8 @@ export type TaskDto = {
repository: RepositoryDto;
title: string | null;
description: string | null;
task_created_at: string;
task_closed_at: string | null;
issue_created_at: string;
issue_closed_at: string | null;
created_at: string;
updated_at: string | null;
};
Expand Down

0 comments on commit 05a1df7

Please sign in to comment.