aboutsummaryrefslogtreecommitdiff
path: root/src/content/repositories/FollowMasterRepository.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/repositories/FollowMasterRepository.ts')
-rw-r--r--src/content/repositories/FollowMasterRepository.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/content/repositories/FollowMasterRepository.ts b/src/content/repositories/FollowMasterRepository.ts
index da2402c..cc49e5f 100644
--- a/src/content/repositories/FollowMasterRepository.ts
+++ b/src/content/repositories/FollowMasterRepository.ts
@@ -35,7 +35,7 @@ export class FollowMasterRepositoryImpl implements FollowMasterRepository {
}
getTagsByPrefix(prefix: string): string[] {
- return current.tags.filter(t => t.startsWith(prefix));
+ return current.tags.filter((t) => t.startsWith(prefix));
}
addTag(tag: string): void {
@@ -54,4 +54,3 @@ export class FollowMasterRepositoryImpl implements FollowMasterRepository {
return current.background;
}
}
-