Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3394141
D3656.id11191.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D3656.id11191.diff
View Options
diff --git a/landing/header.react.js b/landing/header.react.js
--- a/landing/header.react.js
+++ b/landing/header.react.js
@@ -6,8 +6,6 @@
import * as React from 'react';
import { NavLink } from 'react-router-dom';
-import { isDev } from 'lib/utils/dev-utils.js';
-
import css from './header.css';
const iconProps = {
@@ -23,16 +21,6 @@
};
function Header(): React.Node {
- let launchAppIcon;
- if (isDev) {
- launchAppIcon = (
- <a href="https://web.comm.app">
- <div className={css.webapp_icon}>
- <FontAwesomeIcon icon={faExternalLinkAlt} {...iconProps} />
- </div>
- </a>
- );
- }
return (
<nav className={css.wrapper}>
<NavLink to="/" className={css.logo}>
@@ -47,7 +35,11 @@
</NavLink>
</div>
<div className={css.social_icons_container}>
- {launchAppIcon}
+ <a href="https://web.comm.app">
+ <div className={css.webapp_icon}>
+ <FontAwesomeIcon icon={faExternalLinkAlt} {...iconProps} />
+ </div>
+ </a>
<a href="https://twitter.com/commdotapp">
<div className={css.twitter_icon}>
<FontAwesomeIcon icon={faTwitter} {...iconProps} />
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 1, 5:47 PM (21 h, 1 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2605250
Default Alt Text
D3656.id11191.diff (1 KB)
Attached To
Mode
D3656: [landing] Remove `isDev` gate for "Launch app" icon in landing `Header`
Attached
Detach File
Event Timeline
Log In to Comment