Skip to content

Commit

Permalink
fix(utils/data): fix env name
Browse files Browse the repository at this point in the history
  • Loading branch information
kwaa committed Feb 17, 2024
1 parent cf2e51b commit 490c18f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/utils/src/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ impl AppEnv {
.expect("env HATSU_PRIMARY_ACCOUNT must be set"),
hatsu_access_token: env::var("HATSU_ACCESS_TOKEN").ok(),
hatsu_node_name: env::var("HATSU_NODE_NAME").ok(),
hatsu_node_description: env::var("HATSU_NODE_NAME").ok(),
hatsu_node_description: env::var("HATSU_NODE_DESCRIPTION").ok(),
}
}
}

0 comments on commit 490c18f

Please sign in to comment.