Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesBochet committed Oct 20, 2024
1 parent f3566ca commit 28db80e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/twenty-front/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = {
'packages/twenty-front/folderStructure.json',
},
rules: {
'project-structure/folder-structure': 'warn',
'project-structure/folder-structure': 'error',
},
},
],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { gql } from '@apollo/client';

import { participantFragment } from '@/activities/emails/queries/fragments/participantFragment';
import { participantFragment } from '@/activities/emails/graphql/queries/fragments/participantFragment';

export const timelineThreadFragment = gql`
fragment TimelineThreadFragment on TimelineThread {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { gql } from '@apollo/client';

import { timelineThreadWithTotalFragment } from '@/activities/emails/queries/fragments/timelineThreadWithTotalFragment';
import { timelineThreadWithTotalFragment } from '@/activities/emails/graphql/queries/fragments/timelineThreadWithTotalFragment';

export const getTimelineThreadsFromPersonId = gql`
query GetTimelineThreadsFromPersonId(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { VariableDateViewFilterValueDirection } from "@/views/view-filter-value/utils/resolveDateViewFilterValue";
import { VariableDateViewFilterValueDirection } from '@/views/view-filter-value/utils/resolveDateViewFilterValue';

type RelativeDateDirectionOption = {
value: VariableDateViewFilterValueDirection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { VariableDateViewFilterValueUnit } from '@/views/utils/view-filter-value/resolveDateViewFilterValue';
import { VariableDateViewFilterValueUnit } from '@/views/view-filter-value/utils/resolveDateViewFilterValue';

type RelativeDateUnit = {
value: VariableDateViewFilterValueUnit;
Expand Down

0 comments on commit 28db80e

Please sign in to comment.