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
3 changes: 1 addition & 2 deletions FEATURES_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ import { useUserPreferences, useAutoRefresh } from '@/hooks/useUserPreferences'

function Dashboard() {
const { preferences, updatePreferences } = useUserPreferences()

// Auto-refresh based on user preference
useAutoRefresh(() => refreshData())

Expand Down Expand Up @@ -615,4 +615,3 @@ interface ThemeToggleProps {
---

**Built with ❀️ for FluxLens AI v1.0.2**

6 changes: 4 additions & 2 deletions src/components/dashboard/filter-pills.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ export function FilterPills({ options, selected, onToggle, onClear, className }:
<motion.button
key={option.id}
onClick={() => onToggle(option.id)}
aria-pressed={isSelected}
transition={{ duration: 0.15 }}
className={cn(
'inline-flex items-center gap-2 rounded-full px-3 py-1.5 text-xs font-medium transition-all',
'inline-flex items-center gap-2 rounded-full px-3 py-1.5 text-xs font-medium transition-all focus:outline-none focus-visible:ring-2 focus-visible:ring-white/50 focus-visible:ring-offset-2 focus-visible:ring-offset-neutral-900',
isSelected
? 'bg-[#4C8BF5] text-white shadow-sm'
: 'bg-neutral-800 text-neutral-300 hover:bg-neutral-700'
Expand All @@ -60,7 +61,8 @@ export function FilterPills({ options, selected, onToggle, onClear, className }:
{hasSelection && onClear && (
<button
onClick={onClear}
className="inline-flex items-center gap-1 rounded-full px-3 py-1.5 text-xs font-medium text-neutral-400 hover:text-neutral-300 transition-colors"
aria-label="Clear filters"
className="inline-flex items-center gap-1 rounded-full px-3 py-1.5 text-xs font-medium text-neutral-400 hover:text-neutral-300 transition-colors focus:outline-none focus-visible:ring-2 focus-visible:ring-white/50 focus-visible:ring-offset-2 focus-visible:ring-offset-neutral-900"
>
<X className="size-3" />
Clear
Expand Down
1 change: 0 additions & 1 deletion src/components/empty/loading-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,3 @@ export function LoadingSection() {
</Surface>
)
}

1 change: 0 additions & 1 deletion src/components/overlay/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,3 @@ export function Modal({
</AnimatePresence>
)
}

2 changes: 1 addition & 1 deletion src/lib/integrations/adapters/resend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const resendAdapter: WebhookAdapter = {
return match[1]
}

// 2. Fallback: If sent to "fluxlensai@gmail.com" or generic "inbound@",
// 2. Fallback: If sent to "fluxlensai@gmail.com" or generic "inbound@",
// we assign it to the default/demo org or a specific Admin Org.
if (process.env.NEXT_PUBLIC_DEFAULT_ORG_ID) {
return process.env.NEXT_PUBLIC_DEFAULT_ORG_ID
Expand Down
2 changes: 1 addition & 1 deletion src/lib/reports/pdfGenerator.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Enhanced PDF Report Generator for FluxLens v1.0.2
*
*
* Generates professional PDF reports with:
* - Executive summary with key metrics
* - Department health breakdown with visual indicators
Expand Down
Loading