Skip to content

Commit

Permalink
fix: order
Browse files Browse the repository at this point in the history
  • Loading branch information
Maya Karabula-Stysiak committed Jul 20, 2023
1 parent 40b978d commit 1d9bf31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bin/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ function getFileConfig(): ClientConfig {
if (config.host) {
clientConfig.host = config.host
}
if (config.cmaToken) {
clientConfig.accessToken = config.cmaToken
}
if (config.managementToken) {
clientConfig.accessToken = config.managementToken
}
if (config.cmaToken) {
clientConfig.accessToken = config.cmaToken
}

return clientConfig
} catch (e) {
Expand Down

0 comments on commit 1d9bf31

Please sign in to comment.