From ce1729257388d02388de4789c68f48fbd82dcc9e Mon Sep 17 00:00:00 2001 From: martylukyy <35452459+martylukyy@users.noreply.github.com> Date: Fri, 19 Apr 2024 14:03:45 +0200 Subject: [PATCH] chore: add missing license headers (#1512) --- web/src/api/query_keys.ts | 5 +++++ web/src/components/ExternalLink.tsx | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/web/src/api/query_keys.ts b/web/src/api/query_keys.ts index 33807bd..d8260aa 100644 --- a/web/src/api/query_keys.ts +++ b/web/src/api/query_keys.ts @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2021 - 2024, Ludvig Lundgren and the autobrr contributors. + * SPDX-License-Identifier: GPL-2.0-or-later + */ + export const SettingsKeys = { all: ["settings"] as const, updates: () => [...SettingsKeys.all, "updates"] as const, diff --git a/web/src/components/ExternalLink.tsx b/web/src/components/ExternalLink.tsx index 3143487..62f6279 100644 --- a/web/src/components/ExternalLink.tsx +++ b/web/src/components/ExternalLink.tsx @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2021 - 2024, Ludvig Lundgren and the autobrr contributors. + * SPDX-License-Identifier: GPL-2.0-or-later + */ + type ExternalLinkProps = { href: string; className?: string;