From d8e64302eecbcc3ab322819c83a7b286b133e907 Mon Sep 17 00:00:00 2001 From: Adam Jolicoeur Date: Wed, 24 Dec 2025 11:51:58 -0500 Subject: [PATCH] feat: add FAB button for starting a new task --- dev-dist/sw.js | 2 +- src/components/NewTaskForm.tsx | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-dist/sw.js b/dev-dist/sw.js index 044d211..e42ad19 100644 --- a/dev-dist/sw.js +++ b/dev-dist/sw.js @@ -79,7 +79,7 @@ define(['./workbox-21a80088'], (function (workbox) { 'use strict'; */ workbox.precacheAndRoute([{ "url": "index.html", - "revision": "0.v4bl8mgtcdg" + "revision": "0.dkv277t7u3k" }], {}); workbox.cleanupOutdatedCaches(); workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), { diff --git a/src/components/NewTaskForm.tsx b/src/components/NewTaskForm.tsx index 0c9e861..b3a6eae 100644 --- a/src/components/NewTaskForm.tsx +++ b/src/components/NewTaskForm.tsx @@ -9,7 +9,7 @@ import { SelectValue } from '@/components/ui/select'; import { Textarea } from '@/components/ui/textarea'; -import { ClockPlus, Plus } from 'lucide-react'; +import { Plus } from 'lucide-react'; import { useTimeTracking } from '@/hooks/useTimeTracking'; interface NewTaskFormProps { @@ -56,12 +56,12 @@ export const NewTaskForm: React.FC = ({ onSubmit }) => { if (!isOpen) { return ( ); }