Compare commits

...

2 Commits

Author SHA1 Message Date
Nico
cbfb835b4f Merge branch 'main' of http://192.168.7.78:3000/nalalangan/costco-grocery-list
All checks were successful
Build & Deploy Costco Grocery List / build (push) Successful in 23s
Build & Deploy Costco Grocery List / deploy (push) Successful in 6s
Build & Deploy Costco Grocery List / notify (push) Successful in 1s
2026-01-02 17:30:50 -08:00
Nico
4c62297fb6 Update dockerfile 2026-01-02 17:26:20 -08:00
5 changed files with 9 additions and 4 deletions

View File

@ -62,7 +62,7 @@ jobs:
docker build \
-t $REGISTRY/frontend:${{ github.sha }} \
-t $REGISTRY/frontend:latest \
-f frontend/Dockerfile.dev frontend/
-f frontend/Dockerfile frontend/
- name: Push Frontend Image
run: |

6
frontend/src/App.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
import React from 'react';
declare module './App' {
const App: React.FC;
export default App;
}

View File

@ -1,4 +1,4 @@
import type { GroceryItemType } from "../types";
import type { GroceryItemType } from "../../types";
interface Props {
item: GroceryItemType;

View File

@ -1,4 +1,3 @@
import React from "react";
interface Props {
suggestions: string[];

View File

@ -1,6 +1,6 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.jsx'
import App from './App'
import './index.css'
import './styles/theme.css'