mirror of
https://github.com/documenso/documenso.git
synced 2025-11-25 22:21:31 +10:00
chore: minor fixes
This commit is contained in:
@ -42,9 +42,9 @@ export const SignerConversionChart = ({
|
|||||||
labelStyle={{
|
labelStyle={{
|
||||||
color: 'hsl(var(--primary-foreground))',
|
color: 'hsl(var(--primary-foreground))',
|
||||||
}}
|
}}
|
||||||
formatter={(value, name) => [
|
formatter={(value) => [
|
||||||
Number(value).toLocaleString('en-US'),
|
Number(value).toLocaleString('en-US'),
|
||||||
name === 'Recipients',
|
cummulative ? 'Total Signers' : 'Monthly Signers',
|
||||||
]}
|
]}
|
||||||
cursor={{ fill: 'hsl(var(--primary) / 10%)' }}
|
cursor={{ fill: 'hsl(var(--primary) / 10%)' }}
|
||||||
/>
|
/>
|
||||||
@ -54,7 +54,7 @@ export const SignerConversionChart = ({
|
|||||||
fill="hsl(var(--primary))"
|
fill="hsl(var(--primary))"
|
||||||
radius={[4, 4, 0, 0]}
|
radius={[4, 4, 0, 0]}
|
||||||
maxBarSize={60}
|
maxBarSize={60}
|
||||||
label="Recipients"
|
name={cummulative ? 'Total Signers' : 'Monthly Signers'}
|
||||||
/>
|
/>
|
||||||
</BarChart>
|
</BarChart>
|
||||||
</ResponsiveContainer>
|
</ResponsiveContainer>
|
||||||
|
|||||||
Reference in New Issue
Block a user