mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
🔧 chore: fix turbo infinite recursion and update dependencies
- Remove recursive `turbo run type-check` from parent packages (chat, zitare, voxel-lava) - Increase turbo concurrency from 2 to 5 - Add documentation for turbo anti-pattern in CLAUDE.md - Skip type-check temporarily for apps with pending migrations - Update picture mobile stores to use camelCase API response properties - Add shared-nestjs-auth dependency to chat and picture backends - Clean up unused design-token files from picture package - Update shared-landing-ui components and feedback service config
This commit is contained in:
parent
2cfa09c84d
commit
4cc1ad2c92
25 changed files with 80 additions and 1571 deletions
|
|
@ -18,7 +18,7 @@ const {
|
|||
padding = 'md',
|
||||
as: Element = 'div',
|
||||
href,
|
||||
} = Astro.props;
|
||||
} = Astro.props as Props;
|
||||
|
||||
const paddingStyles = {
|
||||
none: '',
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ interface Props {
|
|||
as?: 'div' | 'section' | 'article' | 'main';
|
||||
}
|
||||
|
||||
const { size = 'lg', class: className = '', as: Element = 'div' } = Astro.props;
|
||||
const { size = 'lg', class: className = '', as: Element = 'div' } = Astro.props as Props;
|
||||
|
||||
const sizes = {
|
||||
sm: 'max-w-3xl',
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ const gridCols = {
|
|||
<svg
|
||||
class:list={[
|
||||
"w-5 h-5",
|
||||
i < testimonial.rating ? "text-[var(--color-primary)]" : "text-[var(--color-border)]"
|
||||
i < (testimonial.rating ?? 0) ? "text-[var(--color-primary)]" : "text-[var(--color-border)]"
|
||||
]}
|
||||
fill="currentColor"
|
||||
viewBox="0 0 20 20"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue