Use api package regexes

This commit is contained in:
Eric Bailey
2023-10-24 09:49:13 -05:00
parent ee3d1ff40d
commit c5005958f0
7 changed files with 33 additions and 34 deletions
+2 -10
View File
@@ -44,7 +44,7 @@ export class TagsAutocompleteModel {
isActive = false
query = ''
searchedTags: string[] = []
profileTags: string[] = ['biology']
profileTags: string[] = []
constructor(public rootStore: RootStoreModel) {
makeAutoObservable(
@@ -113,15 +113,7 @@ export class TagsAutocompleteModel {
// TODO hook up to search type-ahead
async _search() {
runInAction(() => {
this.searchedTags = [
'bluesky',
'code',
'coding',
'dev',
'developer',
'development',
'devlife',
]
this.searchedTags = []
})
}
}