mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	refactor(backend): remove unnecessary any
This commit is contained in:
		
							parent
							
								
									77ebabb3dc
								
							
						
					
					
						commit
						f13c3909a0
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -113,7 +113,7 @@ export class NoteEntityService implements OnModuleInit {
 | 
			
		|||
				hide = false;
 | 
			
		||||
			} else {
 | 
			
		||||
				// 指定されているかどうか
 | 
			
		||||
				const specified = packedNote.visibleUserIds!.some((id: any) => meId === id);
 | 
			
		||||
				const specified = packedNote.visibleUserIds!.some(id => meId === id);
 | 
			
		||||
 | 
			
		||||
				if (specified) {
 | 
			
		||||
					hide = false;
 | 
			
		||||
| 
						 | 
				
			
			@ -250,7 +250,7 @@ export class NoteEntityService implements OnModuleInit {
 | 
			
		|||
				return true;
 | 
			
		||||
			} else {
 | 
			
		||||
				// 指定されているかどうか
 | 
			
		||||
				return note.visibleUserIds.some((id: any) => meId === id);
 | 
			
		||||
				return note.visibleUserIds.some(id => meId === id);
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue