Skip to content

Commit

Permalink
fix: list shortcut api url
Browse files Browse the repository at this point in the history
  • Loading branch information
boojack committed Aug 8, 2023
1 parent 6a9fcb1 commit 11e0625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/src/components/PullShortcutsButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const PullShortcutsButton = () => {
setIsPulling(true);
const {
data: { shortcuts },
} = await axios.get<ListShortcutsResponse>(`${domain}/api/v2/shortcut`, {
} = await axios.get<ListShortcutsResponse>(`${domain}/api/v2/shortcuts`, {
headers: {
Authorization: `Bearer ${accessToken}`,
},
Expand Down

0 comments on commit 11e0625

Please sign in to comment.