Skip to content

Commit e8c1021

Browse files
authored
fix: Update index.ts (#355)
Uses cleaning up code comments as a way to kick off another dist build, having removed /dist/ from .gitignore.
1 parent 173e24e commit e8c1021

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

samples/address-validation/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function handleExampleSelectChange(event) {
115115
}
116116
}
117117

118-
// *** Clear Form Handler ***
118+
// Clear Form Handler
119119
function handleClearForm() {
120120
streetAddress1Input!.value = '';
121121
streetAddress2Input!.value = '';
@@ -128,7 +128,7 @@ function handleClearForm() {
128128
console.log('Cleared form');
129129
}
130130

131-
// --- Example Address Data ---
131+
// Example Address Data
132132
const examples = {
133133
google: {
134134
streetAddress1: '1600 Amphitheatre Parkway',
@@ -180,7 +180,7 @@ const examples = {
180180
},
181181
};
182182

183-
// *** Helper function to populate form fields with example address data ***
183+
// Helper function to populate form fields with example address data
184184
function populateAddressFields(exampleAddress) {
185185
if (!exampleAddress) {
186186
console.warn("No example address data provided.");

0 commit comments

Comments
 (0)