From 60c32dc96a3902c8556234c4086cc5dee9368f96 Mon Sep 17 00:00:00 2001 From: Alex Khomenko Date: Tue, 11 May 2021 19:52:16 +0300 Subject: [PATCH] Add explicit return to GetLoginSubTitle (#33946) --- public/app/core/components/Branding/Branding.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/components/Branding/Branding.tsx b/public/app/core/components/Branding/Branding.tsx index 9df89757dc0..d1b4127b2e2 100644 --- a/public/app/core/components/Branding/Branding.tsx +++ b/public/app/core/components/Branding/Branding.tsx @@ -52,7 +52,7 @@ export class Branding { static LoginBoxBackground = LoginBoxBackground; static AppTitle = 'Grafana'; static LoginTitle = 'Welcome to Grafana'; - static GetLoginSubTitle = () => { + static GetLoginSubTitle = (): null | string => { return null; }; }