Skip to content

Commit 094245e

Browse files
committed
Change "grouptabs" to "uneven": title and logo
1 parent 3440c68 commit 094245e

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

public/favicon.ico

-9.61 KB
Binary file not shown.

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
<meta name="apple-mobile-web-app-capable" content="yes">
1010
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
1111
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
12-
<title>Grouptabs</title>
12+
<title>uneven</title>
1313
</head>
1414
<body>
1515
<noscript>You need to enable JavaScript to run this app.</noscript>
1616
<div id="root"></div>
1717

1818
<div id="loader" class="loader app-loader">
1919
<div></div>
20-
Grouptabs
20+
uneven
2121
</div>
2222
</body>
2323
</html>

public/logo192.png

-5.28 KB
Loading

public/logo512.png

-7.75 KB
Loading

public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"short_name": "Grouptabs",
3-
"name": "Grouptabs",
2+
"short_name": "uneven",
3+
"name": "uneven",
44
"icons": [
55
{
66
"src": "favicon.ico",

src/components/__snapshots__/editentry.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ Array [
365365
src="logo.png"
366366
/>
367367
<h2>
368-
Grouptabs
368+
uneven
369369
</h2>
370370
<p>
371371
Could not find payment.

src/components/__snapshots__/main.test.tsx.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ exports[`renders empty view with no tab selected 1`] = `
4545
src="logo.png"
4646
/>
4747
<h2>
48-
Grouptabs
48+
uneven
4949
</h2>
5050
<p>
5151
Error: Group data missing. Are you offline? Try refreshing.
@@ -106,7 +106,7 @@ exports[`renders missing tab info error 1`] = `
106106
src="logo.png"
107107
/>
108108
<h2>
109-
Grouptabs
109+
uneven
110110
</h2>
111111
<p>
112112
Error: Group data missing. Are you offline? Try refreshing.

src/components/__snapshots__/tabs.test.tsx.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports[`renders empty tab view 1`] = `
1313
src="logo.png"
1414
/>
1515
<h2>
16-
Grouptabs
16+
uneven
1717
</h2>
1818
</div>
1919
<div
@@ -92,7 +92,7 @@ exports[`renders tab view 1`] = `
9292
src="logo.png"
9393
/>
9494
<h2>
95-
Grouptabs
95+
uneven
9696
</h2>
9797
</div>
9898
<div

src/components/app.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from "react";
22
import { render, screen } from "@testing-library/react";
33
import App from "./app";
44

5-
it("renders Grouptabs heading", () => {
5+
it("renders 'uneven' heading", () => {
66
const props: any = {
77
location: {
88
type: "",
@@ -34,5 +34,5 @@ it("renders Grouptabs heading", () => {
3434
onSetAllJoined: jest.fn(),
3535
};
3636
render(<App {...props} />);
37-
expect(screen.getAllByText("Grouptabs")[0]).toBeInTheDocument();
37+
expect(screen.getAllByText("uneven")[0]).toBeInTheDocument();
3838
});

src/components/app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
ROUTE_TRANSACTION,
1212
} from "../redux/actioncreators";
1313

14-
const titleBase = "Grouptabs";
14+
const titleBase = "uneven";
1515

1616
function setTitle(input?: string) {
1717
const documentTitle = document.title;

0 commit comments

Comments
 (0)