Skip to content

Commit

Permalink
Fix typo on download page
Browse files Browse the repository at this point in the history
  • Loading branch information
iaincollins committed Oct 8, 2024
1 parent f0e8666 commit f0ce5c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/downloads.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default () => {
</p>
<ul className='clear'>
{Object.entries(database.tables).map(([k, v]) => <li key={`${database.name}_${k}`} style={{ textTransform: 'capitalize' }}>{v.toLocaleString()} {k}</li>)}
{database?.size && <li>Requires {byteSize(database.size).value} {byteSize(database.size).unit} of diskspace</li>}
{database?.size && <li>Requires {byteSize(database.size).value} {byteSize(database.size).unit} of disk space</li>}
</ul>
<p style={{ margin: '1.5rem 0' }}>
<Link href={database?.download?.url ?? ''} className='button' style={{ padding: '.75rem 1.25rem' }}>
Expand Down

0 comments on commit f0ce5c2

Please sign in to comment.