Skip to content

Commit

Permalink
Merge branch 'main' into renderingtype-option
Browse files Browse the repository at this point in the history
  • Loading branch information
willum070 authored Sep 16, 2024
2 parents a1074c3 + 0c6e685 commit 0b299e0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
env:
CI: true
- name: Push test report to artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: Test Results
Expand Down
4 changes: 2 additions & 2 deletions dist/samples/place-autocomplete-data-session/app/index.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions samples/place-autocomplete-data-session/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ async function makeAcRequest(input) {
// Create a link for the place, add an event handler to fetch the place.
const a = document.createElement('a');
a.addEventListener('click', () => {
onPlaceSelected(placePrediction.toPlace());
onPlaceSelected(placePrediction!.toPlace());
});
a.innerText = placePrediction.text.toString();
a.innerText = placePrediction!.text.toString();

// Create a new list element.
const li = document.createElement('li');
Expand Down

0 comments on commit 0b299e0

Please sign in to comment.