Skip to content

Commit e3f5697

Browse files
chore: updated to the latest version
1 parent e2ba2c9 commit e3f5697

File tree

8 files changed

+23
-13
lines changed

8 files changed

+23
-13
lines changed

apps/api-harmonization/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@nestjs/core": "^11.1.1",
2727
"@nestjs/platform-express": "^11.1.1",
2828
"@o2s/framework": "^0.24.0",
29-
"@o2s/integrations.mocked": "^0.24.0",
29+
"@o2s/integrations.mocked": "^0.24.1",
3030
"@o2s/utils.logger": "^0.12.0",
3131
"compression": "^1.8.0",
3232
"cookie": "^1.0.2",

apps/frontend/.env.local

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ AUTH_GOOGLE_SECRET={CLIENT_SECRET}
2020
AUTH_GITHUB_ID={GITHUB_ID}
2121
AUTH_GITHUB_SECRET={GITHUB_ID}
2222

23-
DATABASE_URL=postgresql://postgres.pdoezpwsillhoosngmbp:a.7VX6r*K.DvtEx@aws-0-eu-west-2.pooler.supabase.com:6543/postgres?pgbouncer=true
24-
DIRECT_URL=postgresql://postgres.pdoezpwsillhoosngmbp:a.7VX6r*K.DvtEx@aws-0-eu-west-2.pooler.supabase.com:5432/postgres
23+
DATABASE_URL=
24+
DIRECT_URL=

apps/frontend/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @o2s/frontend
22

3+
## 0.25.0
4+
5+
### Minor Changes
6+
7+
- 123da31: fix: fixed blogCart hover
8+
9+
### Patch Changes
10+
11+
- 9a2344d: minor UI fixes
12+
313
## 0.24.1
414

515
### Patch Changes

apps/frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@o2s/frontend",
3-
"version": "0.24.1",
3+
"version": "0.25.0",
44
"private": true,
55
"scripts": {
66
"prepare": "npx prisma generate && dotenv -e .env.local -- prisma migrate deploy && dotenv -e .env.local -- prisma db seed",

apps/frontend/src/blocks/TicketRecent/TicketRecent.client.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const TicketRecentPure: React.FC<TicketRecentPureProps> = ({ ...component
3737
const comment = ticket.comments?.items?.[0];
3838

3939
return (
40-
<li key={ticket.id.value} className="p-2 border-t">
40+
<li key={ticket.id.value} className="p-2 [&+&]:border-t">
4141
{!!ticket.comments?.items?.length && (
4242
<div className="flex flex-col gap-6">
4343
{comment && (

apps/frontend/src/components/Cards/BlogCard/BlogCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const BlogCard: React.FC<Readonly<BlogCardProps>> = ({
2222
return (
2323
<Link
2424
asChild
25-
className="whitespace-normal text-foreground hover:no-underline w-full focus-visible:ring-offset-4 block"
25+
className="group whitespace-normal text-foreground hover:no-underline w-full focus-visible:ring-offset-4 block"
2626
>
2727
<NextLink href={url} aria-label={title}>
2828
<div className="flex flex-col gap-6">

apps/frontend/src/containers/Header/MobileNavigation/MobileNavigation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export function MobileNavigation({
9999
};
100100

101101
return (
102-
<nav className="w-full">
102+
<nav className="w-full bg-navbar-background">
103103
{/* Top Navigation Bar */}
104104
<div className="flex justify-between py-4 px-4">
105105
{/* Left Section */}
@@ -117,7 +117,7 @@ export function MobileNavigation({
117117
<Sheet open={isMenuOpen} onOpenChange={setIsMenuOpen}>
118118
<SheetTrigger asChild>
119119
<Button
120-
variant="default"
120+
variant="outline"
121121
size="icon"
122122
className="h-10 w-10"
123123
onClick={() => setIsMenuOpen((prev) => !prev)}

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)