Update expo application
Build and Push Next App / quality (push) Successful in 1m27s
Build and Push Next App / build-next (push) Successful in 3m58s

This commit is contained in:
Gabriel Brown
2026-06-22 12:13:02 -04:00
parent ddce5efb13
commit 42f95530de
78 changed files with 5315 additions and 421 deletions
@@ -0,0 +1,14 @@
import { SpoonCommitList } from './spoon-commit-list';
export const SpoonDetailFork = ({
commits,
}: {
commits: Parameters<typeof SpoonCommitList>[0]['commits'];
}) => (
<SpoonCommitList
commits={commits}
emptyDescription='Fork-only commits appear after Spoon compares your fork with upstream.'
emptyTitle='No fork-only commits cached'
intro='Fork-only commits are customizations Spoon should preserve.'
/>
);