@edgararuiz: the code change in commit 56b968c introduces an error in the function databricks_sdk_client().
Error in if (token == "") { : argument is of length zero
The issue occurs because token <- sdk_config$token returns NULL instead of an empty string ("").
When token is NULL, the condition if (token == "") fails with argument is of length zero.