Fix indentation in DefaultStickers

This commit is contained in:
Max Radermacher 2022-07-28 13:28:04 -07:00
parent c988fdfee6
commit 6aee89fab1

View File

@ -62,16 +62,16 @@ class DefaultStickerPack {
static var packsToAutoInstall: [StickerPackInfo] {
all.values.filter {
$0.shouldAutoInstall
}.map {
$0.info
}.map {
$0.info
}
}
static var packsToNotAutoInstall: [StickerPackInfo] {
all.values.filter {
!$0.shouldAutoInstall
}.map {
$0.info
}.map {
$0.info
}
}