diff --git a/meow/frontend/src/components/Header/index.js b/meow/frontend/src/components/Header/index.js index cf17114a9..5ffaa8242 100644 --- a/meow/frontend/src/components/Header/index.js +++ b/meow/frontend/src/components/Header/index.js @@ -47,25 +47,6 @@ class Header extends Component { }; render() { - let img_d = new Date(), - img_m = 3, - img_dd = 1; - let img_address_modifier = img_d.getMonth() === img_m && img_d.getDate() === img_dd; - - if (img_address_modifier) { - if (this.props.theme.name !== "Scott") { - this.props.editTheme({ - name: "Scott", - primary: "1B1813", - secondary: "614b37", - primary_font_color: "C48A96", - secondary_font_color: "C48A96", - tertiary: "C48A96", - id: 3 - }); - } - } - if (this.props.theme.primary[0] !== "#") { this.props.editTheme({ name: "Daily Bruin", @@ -100,7 +81,7 @@ class Header extends Component { color: `${this.props.theme.primary_font_color}` }} > - {img_address_modifier ? "scott" : "meow"} + {"meow"} {this.props.device === config.MOBILE ? null : (

@@ -127,7 +108,7 @@ class Header extends Component { size="large" onClick={this.newmeow} > - {img_address_modifier ? "new scott" : "new meow"} + {"new meow"} ) : null} diff --git a/meow/frontend/src/components/Login/index.js b/meow/frontend/src/components/Login/index.js index 03a13a7c9..91064cf6f 100644 --- a/meow/frontend/src/components/Login/index.js +++ b/meow/frontend/src/components/Login/index.js @@ -23,11 +23,6 @@ class Login extends React.Component { let img_index = Math.floor(10 * Math.random() + 1); let img_extension = img_index == 5 ? "png" : "jpg"; let img_url = `/static/cats/${img_index}.${img_extension}`; - let img_d = new Date(), - img_m = 3, - img_dd = 1; - let img_address_modifier = img_d.getMonth() === img_m && img_d.getDate() === img_dd; - img_url = img_address_modifier ? `/static/other/2.jpg` : img_url; return (
- {!img_address_modifier ? "meow" : "scott"} + {"meow"}