Compare commits
No commits in common. "cbfb835b4f87958a190f2645a16eb2a77d15562e" and "0b0283127b51d8cdd7c66af5b8db8719e3531768" have entirely different histories.
cbfb835b4f
...
0b0283127b
@ -62,7 +62,7 @@ jobs:
|
|||||||
docker build \
|
docker build \
|
||||||
-t $REGISTRY/frontend:${{ github.sha }} \
|
-t $REGISTRY/frontend:${{ github.sha }} \
|
||||||
-t $REGISTRY/frontend:latest \
|
-t $REGISTRY/frontend:latest \
|
||||||
-f frontend/Dockerfile frontend/
|
-f frontend/Dockerfile.dev frontend/
|
||||||
|
|
||||||
- name: Push Frontend Image
|
- name: Push Frontend Image
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
6
frontend/src/App.d.ts
vendored
6
frontend/src/App.d.ts
vendored
@ -1,6 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
|
|
||||||
declare module './App' {
|
|
||||||
const App: React.FC;
|
|
||||||
export default App;
|
|
||||||
}
|
|
||||||
@ -1,4 +1,4 @@
|
|||||||
import type { GroceryItemType } from "../../types";
|
import type { GroceryItemType } from "../types";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
item: GroceryItemType;
|
item: GroceryItemType;
|
||||||
|
|||||||
@ -1,3 +1,4 @@
|
|||||||
|
import React from "react";
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
suggestions: string[];
|
suggestions: string[];
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { StrictMode } from 'react'
|
import { StrictMode } from 'react'
|
||||||
import { createRoot } from 'react-dom/client'
|
import { createRoot } from 'react-dom/client'
|
||||||
import App from './App'
|
import App from './App.jsx'
|
||||||
import './index.css'
|
import './index.css'
|
||||||
import './styles/theme.css'
|
import './styles/theme.css'
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user