Skip to content

Commit 39ca19b

Browse files
committed
wip
1 parent bfd8602 commit 39ca19b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/signals/signals/src/types/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export interface SignalsPluginSettingsConfig {
115115
* // add a new attribute to watch for changes
116116
* (defaultAttributes) => [...defaultAttributes, 'aria-label']
117117
* // remove an attribute from the list of attributes to watch for changes
118-
* (defaultRoles) => defaultRoles.filter(tag => tag.toLowerCase() !== 'aria-selected')
118+
* (defaultAttributes) => defaultAttributes.filter(attr => attr.toLowerCase() !== 'aria-selected')
119119
*/
120120
mutationGenObservedAttributes?: (defaultAttributes: string[]) => string[]
121121
}

0 commit comments

Comments
 (0)