This commit is contained in:
KS Jannette
2026-02-11 18:41:45 -05:00
parent d813b3a818
commit 5a9f2e4b6b
2 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ const Stickies = () => {
return (
<div>
<Button onClick={handleCluster} isLoading={isPending} label="Group by Theme"/>
<Button onClick={handleCluster} isLoading={isPending} label="Group Notes By Theme"/>
<div className="clusters-container">
{clusters.map((group) => (
<div key={group.label} className="cluster-group">
@@ -46,7 +46,7 @@ const Stickies = () => {
return (
<div>
<Button onClick={handleCluster} isLoading={isPending} label="Group by Theme" />
<Button onClick={handleCluster} isLoading={isPending} label="Group Notes By Theme" />
<div className="stickies-grid">
{stickies?.map((sticky) => (
<Sticky key={sticky.id} sticky={sticky} />

View File

@@ -1,4 +1,4 @@
.primaryButton {
width: 12rem;
width: 14rem;
height: 2.5rem;
}