diff --git a/KeKi/Scenes/Feed/FeedViewController.swift b/KeKi/Scenes/Feed/FeedViewController.swift
index 81fc886..abedc38 100644
--- a/KeKi/Scenes/Feed/FeedViewController.swift
+++ b/KeKi/Scenes/Feed/FeedViewController.swift
@@ -46,6 +46,7 @@ class FeedViewController: UIViewController {
}
private func setupNavigationBar() {
+ self.tabBarController?.tabBar.isHidden = true
self.navigationController?.navigationBar.isHidden = false
self.navigationController?.navigationBar.tintColor = .black
diff --git a/KeKi/Scenes/Search/Search.storyboard b/KeKi/Scenes/Search/Search.storyboard
index 9e01409..4bf8c88 100644
--- a/KeKi/Scenes/Search/Search.storyboard
+++ b/KeKi/Scenes/Search/Search.storyboard
@@ -47,166 +47,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -394,6 +234,166 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/KeKi/Scenes/Search/SearchViewController.swift b/KeKi/Scenes/Search/SearchViewController.swift
index 75bad62..627a45c 100644
--- a/KeKi/Scenes/Search/SearchViewController.swift
+++ b/KeKi/Scenes/Search/SearchViewController.swift
@@ -370,7 +370,7 @@ extension SearchViewController: UICollectionViewDelegate, UICollectionViewDataSo
let storyboard = UIStoryboard.init(name: "Feed", bundle: nil)
guard let feedViewController = storyboard.instantiateViewController(withIdentifier: "FeedViewController") as? FeedViewController else { return }
feedViewController.postIdx = searchResultList[indexPath.row].postIdx
- self.tabBarController?.tabBar.isHidden = true
+ tabBarController?.tabBar.isHidden = true
self.navigationController?.pushViewController(feedViewController, animated: true)
}
}