Skip to content
Merged
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
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
"concurrently": "^8.2.2"
},
"dependencies": {
"sst": "3.5.7"
"sst": "^3.5.15"
}
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"zod": "*"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241022.0",
"@cloudflare/workers-types": "^4.20240923.0",
"@tsconfig/node20": "20.1.4",
"drizzle-kit": "^0.24.2",
"tsd": "^0.31.2",
Expand Down
Empty file removed packages/core/src/util/search.ts
Empty file.
12 changes: 6 additions & 6 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"lucide-react": "^0.469.0",
"next-themes": "^0.3.0",
"postcss": "^8.4.47",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"simple-icons": "^13.21.0",
"tailwind-merge": "^2.5.3",
"tailwindcss": "^3.4.13",
Expand All @@ -53,16 +53,16 @@
"@tanstack/react-query-devtools": "^5.59.6",
"@tanstack/router-devtools": "^1.63.5",
"@tanstack/router-plugin": "^1.63.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"globals": "^15.11.0",
"typescript-eslint": "^8.8.1",
"vite": "^5.4.9"
"vite": "^6.0.7"
}
}
5 changes: 4 additions & 1 deletion packages/web/src/components/search/IssueCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,10 @@ function IssueInteractions({ issue }: { issue: Issue }) {
href={commenter.htmlUrl}
target="_blank"
rel="noopener noreferrer"
className={` z-[${issue.topCommenters!.length - index}] relative block rounded-full ring-2 ring-background transition-all duration-200 hover:z-50 hover:scale-125`}
className="relative block rounded-full ring-2 ring-background transition-all duration-200 hover:scale-125 [&:hover]:!z-50"
style={{
zIndex: issue.topCommenters!.length - index,
}}
>
<img
src={commenter.avatarUrl}
Expand Down
4 changes: 2 additions & 2 deletions packages/web/src/components/search/SearchDropdownMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import {

interface SearchDropdownMenuProps {
removedOperators?: SearchOperator[];
commandRef: React.RefObject<HTMLDivElement>;
commandInputRef: React.RefObject<HTMLInputElement>;
commandRef: React.RefObject<HTMLDivElement | null>;
commandInputRef: React.RefObject<HTMLInputElement | null>;
commandInputValue: string;
subMenu: SearchOperator | null;
handleOperatorSelect: (operator: OperatorWithIcon) => void;
Expand Down
83 changes: 0 additions & 83 deletions packages/web/src/components/ui/EmbedBadgePopover.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion packages/web/src/hooks/useCursorPosition.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useEffect, useState } from "react";

export function useCursorPosition(inputRef: React.RefObject<HTMLInputElement>) {
export function useCursorPosition(inputRef: React.RefObject<HTMLInputElement | null>) {
const [cursorPosition, setCursorPosition] = useState(0);

const handleCursorPosition = () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/hooks/useDebounce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export function useDebounce<TArgs extends unknown[]>(
callback: (...args: TArgs) => void,
delay: number,
) {
const timeoutRef = useRef<number>();
const timeoutRef = useRef<number | undefined>(undefined);

useEffect(() => {
return () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"hono": "^4.6.5"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241022.0"
"@cloudflare/workers-types": "^4.20240923.0"
}
}
2 changes: 1 addition & 1 deletion packages/wrangler/src/workflows/sync/sync.param.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//* Parameters for init workflow *//
export const NUM_CONCURRENT_INITS = 10;
// for GitHub API calls
export const NUM_EMBEDDING_WORKERS = 3; // also corresponds to number of consecutive API calls + upserts before spinning up workers
export const NUM_EMBEDDING_WORKERS = 5; // also corresponds to number of consecutive API calls + upserts before spinning up workers

// duration for parent worker to sleep before checking if workers have finished
export const PARENT_WORKER_SLEEP_DURATION = "30 seconds";
Expand Down
Loading