Skip to content

Commit

Permalink
don't showBeta on cap logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendonovich committed Dec 5, 2024
1 parent 8a44cdc commit bf17bb0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ async fn get_video_metadata(
fn open_editor(app: AppHandle, id: String) {
println!("Opening editor for recording: {}", id);

if let Some(window) = app.get_webview_window("camera") {
if let Some(window) = CapWindowId::Camera.get(&app) {
window.close().ok();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const AdminDesktopNav = () => {
<div className="flex flex-col justify-top items-start flex-shrink-0 px-4 h-full">
<div className="flex justify-start w-full">
<Link href="/dashboard">
<Logo showBeta={true} className="h-9 w-auto" />
<Logo className="h-9 w-auto" />
</Link>
</div>
<AdminNavItems />
Expand Down
2 changes: 1 addition & 1 deletion apps/web/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const Footer = () => {
>
<div className="sm:grid space-y-8 sm:space-y-0 grid-cols-1 lg:grid-cols-12 gap-8 sm:items-start sm:justify-between z-10 relative">
<div className="space-y-2 sm:space-y-4 col-span-12 lg:col-span-6">
<Logo showBeta={true} className="w-[104px] h-auto" />
<Logo className="w-[104px] h-auto" />
<div className="w-full">
<p className="text-gray-500 max-w-md">
Cap is the open source alternative to Loom. Lightweight,
Expand Down
3 changes: 1 addition & 2 deletions apps/web/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export const Navbar = ({ auth }: { auth: boolean }) => {
<a href="/">
<Logo
white={isHomePage ? true : false}
showBeta={true}
className="w-20 sm:w-24 h-auto"
/>
</a>
Expand Down Expand Up @@ -198,7 +197,7 @@ export const Navbar = ({ auth }: { auth: boolean }) => {
<div className="fixed top-0 left-0 w-full h-full px-5 bg-white z-[100000] overflow-auto">
<div className="bg-gradient-to-b from-white to-[rgba(255,255,255,0.3)] pt-5 pb-12 sticky top-0 flex items-center justify-between">
<Link href="/">
<Logo showBeta={true} className="w-20 sm:w-24 h-auto" />
<Logo className="w-20 sm:w-24 h-auto" />
</Link>
<button onClick={() => setShowMobileMenu(!showMobileMenu)}>
<X className="w-[28px] h-[28px]" />
Expand Down

0 comments on commit bf17bb0

Please sign in to comment.