Skip to content
Merged
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
2 changes: 1 addition & 1 deletion apps/web/app/(org)/dashboard/_components/Navbar/Items.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ const NavItem = ({
>
{name}
</p>
{extraText && !sidebarCollapsed && (
{extraText !== null && !sidebarCollapsed && (
<p className="ml-auto text-xs font-medium text-gray-11">
{extraText}
</p>
Expand Down
4 changes: 2 additions & 2 deletions apps/web/app/(org)/dashboard/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default async function DashboardLayout({
}

let organizationSelect: Organization[] = [];
let userCapsCount: number | null = null;
let userCapsCount: number | null = 0;
let organizationSettings: OrganizationSettings | null = null;
let spacesData: Spaces[] = [];
let anyNewNotifications = false;
Expand All @@ -49,7 +49,7 @@ export default async function DashboardLayout({
} catch (error) {
console.error("Failed to load dashboard data", error);
organizationSelect = [];
userCapsCount = null;
userCapsCount = 0;
organizationSettings = null;
spacesData = [];
anyNewNotifications = false;
Expand Down
6 changes: 3 additions & 3 deletions apps/web/components/pages/DownloadPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const DownloadPage = () => {
<h1 className="text-2xl fade-in-down animate-delay-1 md:text-4xl">
Download Cap
</h1>
<p className="px-4 text-sm fade-in-down animate-delay-2 md:text-base md:px-0">
<p className="px-4 text-sm fade-in-down text-gray-11 animate-delay-2 md:text-base md:px-0">
The quickest way to share your screen. Pin to your dock and record in
seconds.
</p>
Expand Down Expand Up @@ -116,8 +116,8 @@ export const DownloadPage = () => {
</div>

{/* Discreet SEO Links */}
<div className="pt-8 mt-32 text-xs border-t border-gray-200 opacity-70 text-gray-1">
<div className="flex flex-wrap gap-y-2 gap-x-4 justify-center mx-auto max-w-lg">
<div className="pt-8 mt-32 text-xs border-t border-gray-5 text-gray-12">
<div className="flex flex-wrap gap-y-2 gap-x-4 justify-center items-center mx-auto max-w-lg">
<Link
href="/screen-recorder"
className="text-xs hover:text-gray-8 hover:underline"
Expand Down