From 50ccbbc564852833579347c8a886e97fa69fb61a Mon Sep 17 00:00:00 2001 From: Timothy Cardoza Date: Wed, 4 Mar 2026 12:42:38 -0600 Subject: [PATCH] View layout fixes from task sorting animations --- src/views/CriticalView.tsx | 4 ++-- src/views/DigInView.tsx | 4 ++-- src/views/PriorityView.tsx | 4 ++-- src/views/ProgressView.tsx | 4 ++-- src/views/SnowballView.tsx | 4 ++-- src/views/UrgencyView.tsx | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/views/CriticalView.tsx b/src/views/CriticalView.tsx index d42fe20..f28be8f 100644 --- a/src/views/CriticalView.tsx +++ b/src/views/CriticalView.tsx @@ -28,10 +28,10 @@ export const CriticalView: Component = () => {

Your tasks ranked by highest urgency + priority.

-
+
{(task) => ( -
+
)} diff --git a/src/views/DigInView.tsx b/src/views/DigInView.tsx index 813b864..ef86dde 100644 --- a/src/views/DigInView.tsx +++ b/src/views/DigInView.tsx @@ -33,10 +33,10 @@ export const DigInView: Component = () => {

Largest tasks first. Tackle big projects head-on.

-
+
{(task) => ( -
+
)} diff --git a/src/views/PriorityView.tsx b/src/views/PriorityView.tsx index 0c7ba78..6c31c5d 100644 --- a/src/views/PriorityView.tsx +++ b/src/views/PriorityView.tsx @@ -28,10 +28,10 @@ export const PriorityView: Component = () => {

Your tasks ordered by priority.

-
+
{(task) => ( -
+
)} diff --git a/src/views/ProgressView.tsx b/src/views/ProgressView.tsx index 5ad3931..d66dd32 100644 --- a/src/views/ProgressView.tsx +++ b/src/views/ProgressView.tsx @@ -35,10 +35,10 @@ export const ProgressView: Component = () => {

Tasks sorted by progress status, then by focus score.

-
+
{(task) => ( -
+
)} diff --git a/src/views/SnowballView.tsx b/src/views/SnowballView.tsx index 4296483..16135d8 100644 --- a/src/views/SnowballView.tsx +++ b/src/views/SnowballView.tsx @@ -33,10 +33,10 @@ export const SnowballView: Component = () => {

Smallest tasks first. Build momentum with quick wins.

-
+
{(task) => ( -
+
)} diff --git a/src/views/UrgencyView.tsx b/src/views/UrgencyView.tsx index c1ebad6..a9736bf 100644 --- a/src/views/UrgencyView.tsx +++ b/src/views/UrgencyView.tsx @@ -32,10 +32,10 @@ export const UrgencyView: Component = () => {

Your tasks ordered by deadline.

-
+
{(task) => ( -
+
)}