Skip to content

Commit bb137cd

Browse files
committed
Fix KLIPY casing in options page
1 parent ac5f1e0 commit bb137cd

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/options.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@
8686
</head>
8787
<body>
8888
<h2>GIPHY API Key</h2>
89-
<p>By default, GIFs for GitHub uses <a href="https://klipy.com" target="_blank">Klipy</a> as its GIF provider. If you have your own GIPHY API key, you can use GIPHY instead.</p>
89+
<p>By default, GIFs for GitHub uses <a href="https://klipy.com" target="_blank">KLIPY</a> as its GIF provider. If you have your own GIPHY API key, you can use GIPHY instead.</p>
9090

9191
<form id="options-form">
9292
<label for="giphy-api-key">GIPHY API Key</label>
9393
<input type="text" id="giphy-api-key" placeholder="Paste your GIPHY API key here" spellcheck="false" autocomplete="off" />
9494
<div class="actions">
9595
<button type="submit">Save</button>
96-
<button type="button" id="clear-btn" class="danger">Clear (use Klipy)</button>
96+
<button type="button" id="clear-btn" class="danger">Clear (use KLIPY)</button>
9797
<span id="status"></span>
9898
</div>
9999
</form>

src/options.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ form.addEventListener('submit', async (event) => {
2121
event.preventDefault();
2222
const key = input.value.trim();
2323
await browser.storage.sync.set({ giphyApiKey: key });
24-
showStatus(key ? 'Saved. Using GIPHY.' : 'Saved. Using Klipy.');
24+
showStatus(key ? 'Saved. Using GIPHY.' : 'Saved. Using KLIPY.');
2525
});
2626

2727
clearButton.addEventListener('click', async () => {
2828
input.value = '';
2929
await browser.storage.sync.set({ giphyApiKey: '' });
30-
showStatus('Cleared. Using Klipy.');
30+
showStatus('Cleared. Using KLIPY.');
3131
});
3232

3333
loadSettings();

0 commit comments

Comments
 (0)