Compare commits

..

No commits in common. "cbfb835b4f87958a190f2645a16eb2a77d15562e" and "0b0283127b51d8cdd7c66af5b8db8719e3531768" have entirely different histories.

5 changed files with 4 additions and 9 deletions

View File

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

View File

@ -1,6 +0,0 @@
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,3 +1,4 @@
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'
import App from './App.jsx'
import './index.css'
import './styles/theme.css'