Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgeorge007 committed Mar 23, 2024
1 parent 9956d5c commit d405371
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -58,7 +58,7 @@ export class TeamsSpotlightSearcherService
(query) => {
if (this.workspaceService.currentWorkspace.value.type === "team") {
const teamID = this.workspaceService.currentWorkspace.value.teamID
debouncedSearch(query, teamID)?.catch((_) => {})
debouncedSearch(query, teamID)?.catch(() => {})
}
},
{
Expand All @@ -77,8 +77,8 @@ export class TeamsSpotlightSearcherService

watch(
teamName,
(teamName) => {
this.searcherSectionTitle = teamName
(newTeamName) => {
this.searcherSectionTitle = newTeamName
},
{
immediate: true,
Expand Down

0 comments on commit d405371

Please sign in to comment.