Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[android][ignore] test snapshot ignore #373

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ import com.emergetools.hackernews.userStorage
import com.emergetools.hackernews.webClient
import kotlinx.serialization.Serializable

/**
* Destinations related to the comments feature.
*/
sealed interface CommentsDestinations {
@Serializable
data class Comments(val storyId: Long) : CommentsDestinations
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.emergetools.hackernews.ui.theme

import androidx.compose.ui.graphics.Color

val HackerOrange = Color(0xFFF59342)
val HackerOrange = Color(0xFF42F593)
val HackerOrangeLight = Color(0xFFFCE0C9)
val HackerRed = Color(0xFFEF476F)
val HackerBlue = Color(0xFF118AB2)
Expand Down