From 107ce226cb58561b6b8d35fead2ff52574b297f2 Mon Sep 17 00:00:00 2001 From: Arkadiusz Bachorski <60391032+arkadiuszbachorski@users.noreply.github.com> Date: Fri, 14 Jun 2024 21:52:36 +0200 Subject: [PATCH] Fix compliance v2 --- packages/design-system/src/modules/auth/hooks.ts | 7 +++++++ packages/design-system/src/modules/auth/serverApp.ts | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/packages/design-system/src/modules/auth/hooks.ts b/packages/design-system/src/modules/auth/hooks.ts index 90f747f0..a6273a3a 100644 --- a/packages/design-system/src/modules/auth/hooks.ts +++ b/packages/design-system/src/modules/auth/hooks.ts @@ -1,3 +1,10 @@ +// +// This source file is part of the Stanford Biodesign Digital Health ENGAGE-HF open-source project +// +// SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md) +// +// SPDX-License-Identifier: MIT +// import type { User } from '@firebase/auth-types' import { type FirebaseOptions } from 'firebase/app' import { type Auth, onAuthStateChanged } from 'firebase/auth' diff --git a/packages/design-system/src/modules/auth/serverApp.ts b/packages/design-system/src/modules/auth/serverApp.ts index 6f1fedb2..64653fe0 100644 --- a/packages/design-system/src/modules/auth/serverApp.ts +++ b/packages/design-system/src/modules/auth/serverApp.ts @@ -1,3 +1,10 @@ +// +// This source file is part of the Stanford Biodesign Digital Health ENGAGE-HF open-source project +// +// SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md) +// +// SPDX-License-Identifier: MIT +// import { type FirebaseOptions, initializeServerApp } from 'firebase/app' import { getAuth } from 'firebase/auth' import { headers } from 'next/headers'