Skip to content

Commit

Permalink
update keyboard shortkuts
Browse files Browse the repository at this point in the history
  • Loading branch information
hellno committed Aug 24, 2023
1 parent e060ccb commit 00ebf22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ export default function Settings() {
</div>
<div className="border-t border-gray-600">
<dl className="divide-y divide-gray-600">
{commands.map((command, index) => (
{commands.map((command) => (
<div className="px-2 py-4 sm:grid sm:grid-cols-3 sm:gap-4">
<dt className="text-sm font-medium text-gray-100">{command.name}</dt>
<dd className="mt-1 text-sm leading-6 text-gray-300 sm:col-span-2 sm:mt-0">{command.shortcut.replace(/\+/g, ' + ')}</dd>
<dd className="mt-1 text-sm leading-6 text-gray-200 sm:col-span-1 sm:mt-0">{command.shortcut.replace(/\+/g, ' + ')}</dd>
</div>
))}
{/* <div className="px-2 py-4 sm:grid sm:grid-cols-3 sm:gap-4">
Expand Down

0 comments on commit 00ebf22

Please sign in to comment.