From ad4446a45b45cbbe26d143704d001c4b86891759 Mon Sep 17 00:00:00 2001 From: Jack DeVries Date: Sun, 11 Aug 2024 21:34:48 -0400 Subject: [PATCH] chore: remove unused TrialAccountCounter --- src/components.rs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/components.rs b/src/components.rs index 7dc591f..5c01104 100644 --- a/src/components.rs +++ b/src/components.rs @@ -299,20 +299,6 @@ impl Component for Home { } } -pub struct TrialAccountCounter { - count_remaining: usize, -} -impl Component for TrialAccountCounter { - fn render(&self) -> String { - let count_remaining = self.count_remaining; - format!( - r#" - {count_remaining} - "# - ) - } -} - pub struct ExternalLink<'a> { pub href: &'a str, pub children: Box,