Skip to content

Commit

Permalink
file rename for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
lcflight committed Dec 27, 2023
1 parent 0997f82 commit c935236
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/taskListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React, {useEffect, useState} from 'react';

//local imports
import themeProvider from '../providers/themeProvider';
import getStoredTasks from '../utils/currentTasks';
import getStoredTasks from '../utils/getStoredTasks';
import {taskType, tasksType, TaskType} from './types';
import checkDate from '../utils/checkDate';
import useIsDarkMode from '../utils/checkDarkMode';
Expand Down
4 changes: 2 additions & 2 deletions src/components/taskPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import {updateTask} from '../services/taskratchet/updateTask';

//local imports
import themeProvider from '../providers/themeProvider';
import getStoredTasks from '../utils/currentTasks';
import getStoredTasks from '../utils/getStoredTasks';
import checkDate from '../utils/checkDate';
import useIsDarkMode from '../utils/checkDarkMode';
import tasks from '../utils/currentTasks';
import tasks from '../utils/getStoredTasks';
import {TaskPopupProps, TaskType} from './types';
import convertCents from '../utils/convertCents';

Expand Down
2 changes: 1 addition & 1 deletion src/screens/HomeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {Props, TaskType} from '../components/types';
import TaskPopup from '../components/taskPopup';
import InfoPopup from '../components/infoPopup';
import getStoredUser from '../utils/getStoredUser';
import getStoredTasks from '../utils/currentTasks';
import getStoredTasks from '../utils/getStoredTasks';
import checkDate from '../utils/checkDate';

export default function HomeScreen({navigation}: Props): JSX.Element {
Expand Down
File renamed without changes.

0 comments on commit c935236

Please sign in to comment.