chore: remove IO.inspect

This commit is contained in:
Zach Daniel 2024-08-05 12:37:28 -04:00
parent c4a910a5d1
commit e94e484885

View file

@ -255,7 +255,7 @@ defmodule Ash.Actions.Read do
{:ok, result, count, query} -> {{:ok, result, count}, query}
{{:error, _, _} = error, query} -> {error, query}
{{:error, _} = error, query} -> {error, query}
other -> {IO.inspect(other), query}
other -> {other, query}
end
with {:ok, data, count} <- data_result,