Skip to content

Commit b24bf3f

Browse files
authored
remove unnecessary back slach (#3608)
1 parent 8d93897 commit b24bf3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tee-worker/omni-executor/pumpx/src/pumpx_api/methods/get_account_user_id.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub async fn get_account_user_id_impl(
2424
client: &PumpxApiClient,
2525
email: String,
2626
) -> Result<GetAccountUserIdResponse, Error> {
27-
let endpoint = client.base_url.join("v3/account/get_account_user_id/").unwrap();
27+
let endpoint = client.base_url.join("v3/account/get_account_user_id").unwrap();
2828
let params = GetAccountUserIdParams { email };
2929
client.http_client.get(endpoint).query(&params).send().await?.json().await
3030
}

0 commit comments

Comments
 (0)