Skip to content

Commit

Permalink
Merge pull request #36 from Amaxa-Impact/feat/permissions
Browse files Browse the repository at this point in the history
fix: tasks page error
  • Loading branch information
not-ani authored Jul 31, 2024
2 parents 4ce0c51 + 15862f8 commit 6ce0ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/router/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const tasksRouter = createTRPCRouter({
const formattedNodes = tasks.map((node) => ({
id: node.id,
type: node.type,
parentId: node.parent.id,
parentId: node.parentId,
position: {
x: node.position.x,
y: node.position.y,
Expand Down

0 comments on commit 6ce0ec6

Please sign in to comment.