Skip to content

Commit a2ec432

Browse files
committed
fix: remove harcoded smarty credentials
1 parent 97cdcda commit a2ec432

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SampleApp/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ static async Task SmartyServiceAsync()
5656
Console.WriteLine("Type your US Zipcode (eg: 95014):");
5757
var zipcode = Console.ReadLine()?.Trim();
5858

59-
var authId = "5c19485e-306d-c4e9-ab20-4b30cb926420"; // Create an account on https://www.smarty.com/ and put your own.
60-
var authToken = "t7Uvm5G5ox8kalbJyMgC"; // Create an account on https://www.smarty.com/ and put your own.
59+
var authId = ""; // Create an account on https://www.smarty.com/ and put your own.
60+
var authToken = ""; // Create an account on https://www.smarty.com/ and put your own.
6161

6262
if (string.IsNullOrWhiteSpace(authId) || string.IsNullOrWhiteSpace(authToken))
6363
{

0 commit comments

Comments
 (0)