Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Fix #5299, disable shutdown header
Browse files Browse the repository at this point in the history
I wanted to make this configurable, but passing that information via the backend, into React, into the client during hydration, started to touch lots of files. Hardcoding it keeps it simple.
  • Loading branch information
ianb committed Jan 15, 2019
1 parent d0e2700 commit f275f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/promotion-strategy.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class PromotionStrategy {
}

shouldShowDeprecation() {
return true;
return false;
}
}

Expand Down

0 comments on commit f275f3a

Please sign in to comment.