From feec5a30b660d96df2d96fb7e03da747ab0eacff Mon Sep 17 00:00:00 2001 From: Alexandre de Souza Date: Mon, 17 Mar 2025 10:41:22 -0300 Subject: [PATCH] Apply review comments --- lib/livebook/config.ex | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/lib/livebook/config.ex b/lib/livebook/config.ex index 19b594ad9..435ad7bd1 100644 --- a/lib/livebook/config.ex +++ b/lib/livebook/config.ex @@ -197,15 +197,7 @@ defmodule Livebook.Config do """ @spec teams_auth() :: :online | :offline | nil def teams_auth() do - Application.get_env(:livebook, :teams_auth) - end - - @doc """ - Returns the app server instance warning message. - """ - @spec app_server_instance_warning() :: String.t() | nil - def app_server_instance_warning() do - Application.get_env(:livebook, :app_server_instance_warning) + Application.fetch_env!(:livebook, :teams_auth) end @doc """