From 4211a57648ae33aa74785ce6621521c684bee83a Mon Sep 17 00:00:00 2001 From: Rico Moorman Date: Thu, 28 Nov 2024 00:14:01 +0100 Subject: [PATCH] Update phoenix_live_view.ex Update the documentation to match the changes introduced in phoenixframework/phoenix#5969 --- lib/phoenix_live_view.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/phoenix_live_view.ex b/lib/phoenix_live_view.ex index 975471a190..3ed04d893c 100644 --- a/lib/phoenix_live_view.ex +++ b/lib/phoenix_live_view.ex @@ -688,7 +688,7 @@ defmodule Phoenix.LiveView do In a typical LiveView application, the message will be rendered by the CoreComponents’ flash/1 component. It is up to this function to determine what kind of messages it supports. - By default, the `:info` and `:error` kinds are handled. + By default, the `:info`, `:success`, and `:error` kinds are handled. ## Examples