fix cast_datetime
Some checks are pending
continuous-integration/drone/push Build is running

This commit is contained in:
shibao 2025-04-05 01:19:20 +00:00
parent c7bd7238c6
commit 926d2fe6c2

View File

@ -155,7 +155,7 @@ defmodule CanneryWeb.CoreComponents do
@spec cast_datetime(DateTime.t() | nil) :: String.t()
defp cast_datetime(%DateTime{} = datetime) do
datetime |> DateTime.from_naive!("Etc/UTC") |> DateTime.to_iso8601(:extended)
datetime |> DateTime.to_iso8601(:extended)
end
defp cast_datetime(_datetime), do: ""