Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions apps/zbugs/public/logo-gigabugs.svg

This file was deleted.

8 changes: 4 additions & 4 deletions apps/zbugs/roci.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<meta property="og:description" content="Bug tracking with Zero." />
<meta
property="og:image"
content="https://zero.rocicorp.dev/api/og?title=Gigabugs&subtitle=2.5%20Million%20Row%20Sync%20Demo&logo=zero"
content="https://zero.rocicorp.dev/api/og?title=Megabugs&subtitle=2.5%20Million%20Row%20Sync%20Demo&logo=zero"
/>
<meta property="og:url" content="https://bugs.rocicorp.dev" />
<meta property="og:type" content="website" />
<meta
property="og:image:alt"
content="Gigabugs - 2.5 Million Row Sync Demo"
content="Megabugs - 2.5 Million Row Sync Demo"
/>
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Zero Bugs" />
Expand All @@ -32,11 +32,11 @@
<meta name="twitter:description" content="Bug tracking with Zero." />
<meta
name="twitter:image"
content="https://zero.rocicorp.dev/api/og?title=Gigabugs&subtitle=2.5%20Million%20Row%20Sync%20Demo&logo=zero"
content="https://zero.rocicorp.dev/api/og?title=Megabugs&subtitle=2.5%20Million%20Row%20Sync%20Demo&logo=zero"
/>
<meta
name="twitter:image:alt"
content="Gigabugs - 2.5 Million Row Sync Demo"
content="Megabugs - 2.5 Million Row Sync Demo"
/>
</head>

Expand Down
2 changes: 1 addition & 1 deletion apps/zbugs/shared/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const queries = {
{
validator: z.undefined(),
},
() => builder.label,
() => builder.label.where(({cmpLit}) => cmpLit(true, '=', false)),
),

allUsers: defineQuery(
Expand Down
11 changes: 0 additions & 11 deletions apps/zbugs/src/assets/images/logo-gigabugs-crop.svg

This file was deleted.

11 changes: 0 additions & 11 deletions apps/zbugs/src/assets/images/logo-gigabugs.svg

This file was deleted.

11 changes: 11 additions & 0 deletions apps/zbugs/src/assets/images/logo-megabugs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion apps/zbugs/src/components/gigabugs-promo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function GigabugsPromo({onNavigate}: GigabugsPromoProps) {
navigate('/p/roci');
}}
>
Gigabugs
Megabugs
</a>{' '}
instead.
<br />
Expand Down
4 changes: 2 additions & 2 deletions apps/zbugs/src/components/nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {memo, useCallback, useEffect, useMemo, useState} from 'react';
import {useSearch} from 'wouter';
import {navigate} from 'wouter/use-browser-location';
import {queries, type ListContext} from '../../shared/queries.ts';
import logoGigabugsURL from '../assets/images/logo-gigabugs.svg';
import logoMegabugsURL from '../assets/images/logo-megabugs.svg';
import logoURL from '../assets/images/logo.svg';
import markURL from '../assets/images/mark.svg';
import {useIsOffline} from '../hooks/use-is-offline.ts';
Expand Down Expand Up @@ -72,7 +72,7 @@ export const Nav = memo(() => {
<img
src={
(project?.logoURL ?? isGigabugs(projectName))
? logoGigabugsURL
? logoMegabugsURL
: logoURL
}
className="zero-logo"
Expand Down
Loading
Loading