Skip to content

Commit

Permalink
Formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
vloothuis committed May 26, 2024
1 parent 30c0270 commit 3461ced
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions core/config/runtime.exs
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,10 @@ if config_env() == :prod do

config :logger, level: System.get_env("LOG_LEVEL", "info") |> String.to_existing_atom()

config :core, opp_client_options: [
auth: {:bearer, System.fetch_env!("OPP_API_KEY")}
]
config :core,
opp_client_options: [
auth: {:bearer, System.fetch_env!("OPP_API_KEY")}
]

if sentry_dsn = System.get_env("SENTRY_DSN") do
config :sentry,
Expand Down
2 changes: 1 addition & 1 deletion core/lib/opp_client.ex
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ defmodule OPPClient do
],
return_url: [type: :string, required: true],
notify_url: [type: :string, required: true],
metadata: [type: :map],
metadata: [type: :map]
)

# create
Expand Down

0 comments on commit 3461ced

Please sign in to comment.