Skip to content

Commit

Permalink
fix:use string intend of String
Browse files Browse the repository at this point in the history
  • Loading branch information
maceteligolden committed Dec 19, 2023
1 parent 0faaf55 commit f3a0475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/app/hooks/features/useKanban.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function useKanban() {
return columnData[0].isCollapsed
}

const reorderStatus = (itemStatus: String, index: number) => {
const reorderStatus = (itemStatus: string, index: number) => {
taskStatusHook.taskStatus.filter((status: ITaskStatusItemList)=> {
return status.name === itemStatus
}).map((status: ITaskStatusItemList)=> {
Expand Down

0 comments on commit f3a0475

Please sign in to comment.