Skip to content

Commit

Permalink
v1.0.0 beta.5 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
woong-jae authored Jan 8, 2024
1 parent 450d2d7 commit 69063c6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/assets/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"manifest_version": 3,
"name": "Code-Vault",
"description": "Code-Vault에서 제공하는 크롬 확장도구입니다.",
"version": "1.0.0.4",
"version_name": "1.0.0-beta.4",
"version": "1.0.0.5",
"version_name": "1.0.0-beta.5",
"author": "[email protected]",
"homepage_url": "https://github.com/woong-jae/code-vault",
"action": {},
Expand Down
3 changes: 3 additions & 0 deletions src/base/services/github/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ export class Github {
async getRepositories() {
const res = await this.githubApiClient.rest.repos.listForAuthenticatedUser({
type: 'owner',
headers: {
'cache-control': 'no-cache',
},
});

if (!res.data) return null;
Expand Down
1 change: 1 addition & 0 deletions src/features/user/ui/CreateRepository.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export function CreateRepository({
<AlertDialogCancel>취소</AlertDialogCancel>
<AlertDialogAction
onClick={() => {
if (createRepository.isPending) return;
createRepository.mutate(repositoryName);
}}
>
Expand Down

0 comments on commit 69063c6

Please sign in to comment.