Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/src/components/home/widgets/LatestUsedAppsWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function LatestUsedAppsWidget() {
<CardHeader>
<CardTitle className="flex items-center justify-between">
<div>Recently Used Apps</div>
<LinkButton to="/apps?tab=connected-apps" variant="secondary">
<LinkButton to="/apps?tab=connected-apps" variant="ghost" size="sm">
See All
</LinkButton>
</CardTitle>
Expand All @@ -39,7 +39,7 @@ export function LatestUsedAppsWidget() {
new Date(a.lastUsedAt ?? 0).getTime()
)
.map((app) => (
<Link key={app.id} to={`/apps/${app.id}`}>
<Link key={app.id} to={`/apps/${app.id}`} className="group">
<div className="flex items-center w-full gap-4">
<AppAvatar app={app} className="w-14 h-14 rounded-lg" />
<p className="text-sm font-medium flex-1 truncate">
Expand All @@ -50,7 +50,7 @@ export function LatestUsedAppsWidget() {
<p className="text-xs text-muted-foreground">
{app.lastUsedAt ? dayjs(app.lastUsedAt).fromNow() : "never"}
</p>
<ChevronRightIcon className="text-muted-foreground size-8" />
<ChevronRightIcon className="size-4 shrink-0 text-muted-foreground transition-transform group-hover:translate-x-0.5" />
</div>
</Link>
))}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/screens/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ function Home() {
<OnboardingChecklist />
<WhatsNewWidget />
<SupportAlbyWidget />
<LatestUsedAppsWidget />
{info.albyAccountConnected && (
<ExternalLink to="https://www.getalby.com/dashboard">
<Card>
Expand Down Expand Up @@ -161,7 +162,6 @@ function Home() {

{/* RIGHT */}
<div className="grid gap-3">
<LatestUsedAppsWidget />
<LightningMessageboardWidget />
<AppOfTheDayWidget />

Expand Down
Loading