Skip to content

Commit

Permalink
Hide app footer :')
Browse files Browse the repository at this point in the history
  • Loading branch information
hulloitskai committed Aug 16, 2023
1 parent 4c9d91d commit af72e7d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ COPY starship.toml /root/.config/starship.toml
RUN curl -sS https://starship.rs/install.sh | sh -s -- --yes

# Configure shell
COPY .zcustomizations .inputrc ~/
COPY .zcustomizations .inputrc /root/
RUN echo -e '\n. "$HOME/.zcustomizations"' >> ~/.zshrc && chsh -s /bin/zsh

# Configure workdir and environment
Expand Down
4 changes: 2 additions & 2 deletions app/components/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import AppMeta from "./AppMeta";
import type { AppMetaProps } from "./AppMeta";

import AppHeader from "./AppHeader";
import AppFooter from "./AppFooter";
// import AppFooter from "./AppFooter";
import AppFlash from "./AppFlash";
import PageLayout from "./PageLayout";
import PageContainer from "./PageContainer";
Expand Down Expand Up @@ -123,7 +123,7 @@ const AppLayout: FC<AppLayoutProps> = ({
{content}
</Box>
</AppShell>
<AppFooter />
{/* <AppFooter /> */}
<AppFlash />
</PageLayout>
);
Expand Down
3 changes: 3 additions & 0 deletions app/models/reservation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
class Reservation < ApplicationRecord
include Identifiable

# == Attributes
enumerize :status, in: %i[pending confirmed cancelled]

# == Associations
belongs_to :activity

Expand Down

0 comments on commit af72e7d

Please sign in to comment.