We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32e21c0 commit 741caa6Copy full SHA for 741caa6
apps/frontend/src/pages/Dashboard.tsx
@@ -72,7 +72,7 @@ export const Dashboard: React.FC = () => {
72
value={`$${(shortenNumber(stats?.totalCapital || 0)).toLocaleString()}`}
73
icon={<DollarSign className="w-6 h-6 text-emerald-500" />}
74
/>
75
- )};
+ )}
76
</div>
77
)}
78
{/* SuperAdmin/Admin: Recent Actions */}
@@ -167,11 +167,11 @@ export const Dashboard: React.FC = () => {
167
emptyText={
168
user?.role === "SuperAdmin"
169
? "No companies found"
170
- : "You don't have any companies yet8"
+ : "You don't have any companies yet"
171
}
172
showOwner={user?.role === "SuperAdmin"}
173
// onCompanyClick={() => navigate("/companies")}
174
- />
+ />
175
</Card>
176
177
0 commit comments