Skip to content

Commit

Permalink
patch: progress
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidg3 committed Aug 8, 2024
1 parent 759495c commit 6a17d8a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/pages/concepts/views/rendering-forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ export default class MyCardViewController extends AbstractViewController<Card> {
})
}

private async handleAutocompleteChange(value: string) {
private async handleAutocompleteChange(_value: string) {
this.autocompleteInputVc.showSuggestions([])
const client = await this.connectToApi()
await client.emitAndFlattenResponses(
Expand Down Expand Up @@ -867,6 +867,8 @@ type MyFormSchema = typeof myFormSchema
> **Note**: You should be getting an error that a listener for `eightbitstories.autocomplete-event::v2020_01_01` doesn't exist for the last test, we'll refactor our test next to make it work.
> **Note**: To avoid an unused variable warning, you can prepend the variable name with an underscore (`_value`).
</details>

<details>
Expand Down Expand Up @@ -978,3 +980,8 @@ class EventFaker {
</details>

<details>
<summary><strong>Test 4b</strong>: Assert the expected target & payload</summary>

</details>

0 comments on commit 6a17d8a

Please sign in to comment.