Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions server/channels/app/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,7 @@ const (
debugScheduledPostJobInterval = 2 * time.Second
)

var SentryDSN = "https://9d7c9cccf549479799f880bcf4f26323@o94110.ingest.sentry.io/5212327"

// This is a placeholder to allow the existing release pipelines to run without failing to insert
// the key that's now hard-coded above. Remove this once we converge on the unified delivery
// pipeline in GitHub.
var _ = "placeholder_sentry_dsn"
var SentryDSN = "https://eaf281226106b5bba68694d1316da21c@o94110.ingest.us.sentry.io/5212327"

type Server struct {
// RootRouter is the starting point for all HTTP requests to the server.
Expand Down Expand Up @@ -1411,7 +1406,7 @@ func (s *Server) doLicenseExpirationCheck() {
})
}

//remove the license
// remove the license
if appErr := s.RemoveLicense(); appErr != nil {
mlog.Error("Error while removing the license.", mlog.Err(appErr))
}
Expand Down
4 changes: 2 additions & 2 deletions webapp/channels/src/sass/components/_post.scss
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@
}

.post__body {
padding: 2px 0;
padding: 2px 0 0 0;
background: transparent !important;
line-height: 1.5;

Expand Down Expand Up @@ -1384,7 +1384,7 @@

.post__body {
width: 100%;
padding: 0.2em 0;
padding: 0 0 0.2em;
word-wrap: break-word;

&-reactions-acks {
Expand Down
Loading