Skip to content

Commit 24973b7

Browse files
committed
fix: remove mentions of apl
1 parent cd11258 commit 24973b7

File tree

4 files changed

+25
-22
lines changed

4 files changed

+25
-22
lines changed

public/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<link rel="stylesheet" type="text/css" href="%PUBLIC_URL%/global.css" />
1313
<meta name="msapplication-TileColor" content="#2d89ef" />
1414
<meta name="theme-color" content="#2d89ef" />
15-
<meta name="description" content="APL platform helps you deploy apps in Linode" />
16-
<meta name="application-name" content="APL platform" />
15+
<meta name="description" content="Application platform helps you deploy apps in Linode" />
16+
<meta name="application-name" content="Application platform" />
1717
<!--
1818
manifest.json provides metadata used when your web app is installed on a
1919
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
@@ -28,7 +28,7 @@
2828
work correctly both with client-side routing and a non-root public URL.
2929
Learn how to configure a non-root public URL by running `npm run build`.
3030
-->
31-
<title>Akamai APL Platform</title>
31+
<title>Akamai Application Platform</title>
3232
</head>
3333
<body>
3434
<noscript>You need to enable JavaScript to run this app.</noscript>

public/site.webmanifest

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"name": "Linode APL",
3-
"short_name": "Linode APL",
4-
"icons": [
5-
{
6-
"src": "/android-chrome-192x192.png",
7-
"sizes": "192x192",
8-
"type": "image/png"
9-
},
10-
{
11-
"src": "/android-chrome-512x512.png",
12-
"sizes": "512x512",
13-
"type": "image/png"
14-
}
15-
],
16-
"theme_color": "#ffffff",
17-
"background_color": "#ffffff",
18-
"display": "standalone"
2+
"name": "Linode Application Platform",
3+
"short_name": "Linode Application Platform",
4+
"icons": [
5+
{
6+
"src": "/android-chrome-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
},
10+
{
11+
"src": "/android-chrome-512x512.png",
12+
"sizes": "512x512",
13+
"type": "image/png"
14+
}
15+
],
16+
"theme_color": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
1919
}

src/App.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ function App() {
8585
<NotistackProvider>
8686
<SnackbarUtilsConfigurator />
8787
<CssBaseline />
88-
<Helmet titleTemplate='%s | APL' defaultTitle='Akamai APL Platform' />
88+
<Helmet
89+
titleTemplate='%s | Application Platform'
90+
defaultTitle='Akamai Application Platform'
91+
/>
8992
<Switch>
9093
<Route path='/' component={Dashboard} exact />
9194
<PrivateRoute

src/components/LoadingScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type Props = {
2626
loadingText?: string
2727
}
2828

29-
export default function LoadingScreen({ loadingText = 'Loading APL console' }: Props) {
29+
export default function LoadingScreen({ loadingText = 'Loading console' }: Props) {
3030
return (
3131
<RootStyle>
3232
<motion.div

0 commit comments

Comments
 (0)