diff options
author | Vika <vika@fireburn.ru> | 2024-01-29 07:08:21 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-01-29 07:08:21 +0300 |
commit | d36014200549cf73a7f22c6f94fb15bec17823e8 (patch) | |
tree | 6e56f912219c5d20e2768b1f016f23fff22fe83e /companion-lite | |
parent | ed51d48f7353a5ceefa798ded52d3af465d4d0ec (diff) | |
download | kittybox-d36014200549cf73a7f22c6f94fb15bec17823e8.tar.zst |
lint: no extra whitespace on line endings
Diffstat (limited to 'companion-lite')
-rw-r--r-- | companion-lite/index.html | 2 | ||||
-rw-r--r-- | companion-lite/src/indieauth.ts | 2 | ||||
-rw-r--r-- | companion-lite/src/micropub_api.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/companion-lite/index.html b/companion-lite/index.html index fc99c60..f5e0bdb 100644 --- a/companion-lite/index.html +++ b/companion-lite/index.html @@ -58,7 +58,7 @@ <input type="radio" id="select_channels" name="channel_select" value="on"> <label for="select_channels">Select channels manually</label> </section> - + <fieldset id="channels" style="display: none"> <legend>Available channels:</legend> <template id="channel_selector"> diff --git a/companion-lite/src/indieauth.ts b/companion-lite/src/indieauth.ts index 40facab..31854ee 100644 --- a/companion-lite/src/indieauth.ts +++ b/companion-lite/src/indieauth.ts @@ -45,7 +45,7 @@ export interface IndiewebEndpoints { userinfo_endpoint: URL | null, revocation_endpoint: URL | null, micropub: URL, - + } export function create_verifier() { diff --git a/companion-lite/src/micropub_api.ts b/companion-lite/src/micropub_api.ts index fa1c431..c863256 100644 --- a/companion-lite/src/micropub_api.ts +++ b/companion-lite/src/micropub_api.ts @@ -44,7 +44,7 @@ export class Micropub { readonly token: string readonly micropub_endpoint: URL private config_response: MicropubConfig | null - + constructor({ endpoint, token }: { endpoint: URL, token: string }) { this.micropub_endpoint = endpoint; this.token = token; |