Skip to content

Commit

Permalink
Fix godaddy error
Browse files Browse the repository at this point in the history
  • Loading branch information
usual2970 committed Sep 13, 2024
1 parent ac14924 commit 505cfc5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/applicant/godaddy.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func (a *godaddy) Apply() (*Certificate, error) {
json.Unmarshal([]byte(a.option.Access), access)

os.Setenv("GODADDY_API_KEY", access.ApiKey)
os.Setenv("GODADDY_API_SECRET", access.ApiKey)
os.Setenv("GODADDY_API_SECRET", access.ApiSecret)

dnsProvider, err := godaddyProvider.NewDNSProvider()
if err != nil {
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Certimate - Your Trusted SSL Automation Partner</title>
<script type="module" crossorigin src="/assets/index-BRoqOo1T.js"></script>
<script type="module" crossorigin src="/assets/index-B_74ZyCB.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-Cg0yCJnh.css">
</head>
<body class="bg-background">
Expand Down
2 changes: 1 addition & 1 deletion ui/src/pages/DashboardLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export default function Dashboard() {
href="https://github.com/usual2970/certimate/releases"
target="_blank"
>
Certimate v0.1.4
Certimate v0.1.5
</a>
</div>
</div>
Expand Down

0 comments on commit 505cfc5

Please sign in to comment.