Skip to content

Commit

Permalink
Small fixes (#188)
Browse files Browse the repository at this point in the history
* fix github action sst install

* switch to command icon
  • Loading branch information
hingobway authored Nov 17, 2024
1 parent 90ba29b commit 2f634e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
npm config set "//registry.tiptap.dev/:_authToken" $TIPTAP_KEY
- run: pnpm install
- name: install sst
run: curl -fsSL https://sst.dev/install | VERSION=0.0.546 bash
run: curl -fsSL https://h-n.me/sst_install | VERSION=0.0.546 bash

# deploy
- name: deploy
Expand Down
2 changes: 1 addition & 1 deletion client/src/app/calendar/new/_components/NewEventForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const NewEventForm = ({
<div className="flex flex-row items-center gap-4">
{keyType !== 'MOBILE' && (
<div className="text-slate-600">
<Kbd>{keyType === 'MAC' ? `Cmd` : `Ctrl`}</Kbd>
<Kbd>{keyType === 'MAC' ? `` : `Ctrl`}</Kbd>
<span> + </span>
<Kbd>Enter</Kbd> to submit
</div>
Expand Down
2 changes: 1 addition & 1 deletion client/src/app/cms/pages/edit/[id]/_components/SaveRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function SaveRow({
) : (
// show desktop shortcut
<>
<Kbd>{keys === 'MAC' ? `Cmd` : `Ctrl`}</Kbd> +{' '}
<Kbd>{keys === 'MAC' ? `` : `Ctrl`}</Kbd> +{' '}
<Kbd>Shift</Kbd> +<Kbd>Enter</Kbd> to save
</>
)}
Expand Down

0 comments on commit 2f634e6

Please sign in to comment.