From 93f06f81cd5e960d023bf4c4cf8dbb52cfbf323f Mon Sep 17 00:00:00 2001 From: Andrew P Maney Date: Fri, 13 Mar 2020 17:48:51 -0700 Subject: [PATCH] Tasks: moves misplaced const a const was accidentally placed in the middle of imports, that has been moved --- src/components/Tasks/TaskListItem.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Tasks/TaskListItem.tsx b/src/components/Tasks/TaskListItem.tsx index 40c4c42..09c3d10 100644 --- a/src/components/Tasks/TaskListItem.tsx +++ b/src/components/Tasks/TaskListItem.tsx @@ -10,6 +10,10 @@ import Checkbox from '@material-ui/core/Checkbox'; import CheckBoxOutlineBlankIcon from '@material-ui/icons/CheckBoxOutlineBlank'; import * as colors from '@material-ui/core/colors'; +import moment from 'moment'; + +import { mapPriority } from '../../helpers'; + const checkboxColor = { [TaskPriorityType.Undefined]: colors.grey[600], [TaskPriorityType.Low]: colors.blue[600], @@ -17,10 +21,6 @@ const checkboxColor = { [TaskPriorityType.High]: colors.red[600], }; -import moment from 'moment'; - -import { mapPriority } from '../../helpers'; - interface PropsType { entry: TaskType; onClick: (task: TaskType) => void;