commit 351b32308f2b325d0b14bd0b89543c4fadba9c64
parent 5a4299edaa481d29ea5234d7101d14330a818198
Author: OlegAba <mail@olegaba.com>
Date: Wed, 1 Feb 2023 13:40:32 -0500
Fix DM view padding
Changelog-Fixed: DM Padding
Closes: #476
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/damus/Views/DirectMessagesView.swift b/damus/Views/DirectMessagesView.swift
@@ -43,6 +43,7 @@ struct DirectMessagesView: View {
}
}
}
+ .padding(.horizontal)
}
}
@@ -82,7 +83,6 @@ struct DirectMessagesView: View {
}
.tabViewStyle(.page(indexDisplayMode: .never))
}
- .padding(.horizontal)
.navigationTitle(NSLocalizedString("DMs", comment: "Navigation title for view of DMs, where DM is an English abbreviation for Direct Message."))
}
}